diff options
Diffstat (limited to 'tmk_core')
| -rw-r--r-- | tmk_core/common/chibios/timer.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/tmk_core/common/chibios/timer.c b/tmk_core/common/chibios/timer.c index 66c4a6458..ed5cfe1b0 100644 --- a/tmk_core/common/chibios/timer.c +++ b/tmk_core/common/chibios/timer.c | |||
| @@ -28,10 +28,6 @@ uint32_t timer_read32(void) { | |||
| 28 | return current_time_ms; | 28 | return current_time_ms; |
| 29 | } | 29 | } |
| 30 | 30 | ||
| 31 | uint16_t timer_elapsed(uint16_t last) { | 31 | uint16_t timer_elapsed(uint16_t last) { return TIMER_DIFF_16(timer_read(), last); } |
| 32 | return TIMER_DIFF_16(timer_read(), last); | ||
| 33 | } | ||
| 34 | 32 | ||
| 35 | uint32_t timer_elapsed32(uint32_t last) { | 33 | uint32_t timer_elapsed32(uint32_t last) { return TIMER_DIFF_32(timer_read32(), last); } |
| 36 | return TIMER_DIFF_32(timer_read32(), last); | ||
| 37 | } | ||
