aboutsummaryrefslogtreecommitdiff
path: root/tmk_core/common/test/timer.c
diff options
context:
space:
mode:
authorFred Sundvik <fsundvik@gmail.com>2017-07-01 22:25:06 +0300
committerJack Humbert <jack.humb@gmail.com>2017-07-08 21:59:51 -0400
commit4e69a8bda6c4003c6b9e33de7db89fe073c970f5 (patch)
tree8a01b6dde0195d574686fdd2f9cd1da61b3aa8dc /tmk_core/common/test/timer.c
parenta62f4496599d4a1880adc5f272f97f81be0586cb (diff)
downloadqmk_firmware-4e69a8bda6c4003c6b9e33de7db89fe073c970f5.tar.gz
qmk_firmware-4e69a8bda6c4003c6b9e33de7db89fe073c970f5.zip
Add basic timing support, and SFT_T tests
Also expose some bugs...
Diffstat (limited to 'tmk_core/common/test/timer.c')
-rw-r--r--tmk_core/common/test/timer.c17
1 files changed, 9 insertions, 8 deletions
diff --git a/tmk_core/common/test/timer.c b/tmk_core/common/test/timer.c
index 09ea91a89..49efc1c1e 100644
--- a/tmk_core/common/test/timer.c
+++ b/tmk_core/common/test/timer.c
@@ -16,15 +16,16 @@
16 16
17#include "timer.h" 17#include "timer.h"
18 18
19// TODO: the timer should work, but at a much faster rate than realtime 19static uint32_t current_time = 0;
20// It should also have some kind of integration with the testing system
21 20
22void timer_init(void) {} 21void timer_init(void) {current_time = 0;}
23 22
24void timer_clear(void) {} 23void timer_clear(void) {current_time = 0;}
25 24
26uint16_t timer_read(void) { return 0; } 25uint16_t timer_read(void) { return current_time & 0xFFFF; }
27uint32_t timer_read32(void) { return 0; } 26uint32_t timer_read32(void) { return current_time; }
28uint16_t timer_elapsed(uint16_t last) { return 0; } 27uint16_t timer_elapsed(uint16_t last) { return TIMER_DIFF_16(timer_read(), last); }
29uint32_t timer_elapsed32(uint32_t last) { return 0; } 28uint32_t timer_elapsed32(uint32_t last) { return TIMER_DIFF_32(timer_read32(), last); }
30 29
30void set_time(uint32_t t) { current_time = t; }
31void advance_time(uint32_t ms) { current_time += ms; } \ No newline at end of file