summaryrefslogtreecommitdiff
path: root/firmware/target/arm/tcc77x/timer-tcc77x.c
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/arm/tcc77x/timer-tcc77x.c')
-rw-r--r--firmware/target/arm/tcc77x/timer-tcc77x.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/firmware/target/arm/tcc77x/timer-tcc77x.c b/firmware/target/arm/tcc77x/timer-tcc77x.c
index ddf44454c2..6e8764d9ce 100644
--- a/firmware/target/arm/tcc77x/timer-tcc77x.c
+++ b/firmware/target/arm/tcc77x/timer-tcc77x.c
@@ -28,7 +28,7 @@
28/* Use the TC32 counter [sourced by Xin:12Mhz] for this timer, as it's the 28/* Use the TC32 counter [sourced by Xin:12Mhz] for this timer, as it's the
29 only one that allows a 32-bit counter (Timer0-5 are 16/20 bit only). */ 29 only one that allows a 32-bit counter (Timer0-5 are 16/20 bit only). */
30 30
31bool __timer_set(long cycles, bool start) 31bool timer_set(long cycles, bool start)
32{ 32{
33 #warning function not implemented 33 #warning function not implemented
34 34
@@ -37,14 +37,14 @@ bool __timer_set(long cycles, bool start)
37 return false; 37 return false;
38} 38}
39 39
40bool __timer_start(void) 40bool timer_start(void)
41{ 41{
42 #warning function not implemented 42 #warning function not implemented
43 43
44 return false; 44 return false;
45} 45}
46 46
47void __timer_stop(void) 47void timer_stop(void)
48{ 48{
49 #warning function not implemented 49 #warning function not implemented
50} 50}