From: Fred Sundvik Date: Fri, 16 Jun 2017 18:51:40 +0000 (+0300) Subject: Add empty timer functions X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=83509adc3a6ac71db7c7be32026a351fe08dc13a;p=qmk_firmware.git Add empty timer functions --- diff --git a/tmk_core/common/native/timer.c b/tmk_core/common/native/timer.c index 01d1930ea..e21cd7d55 100644 --- a/tmk_core/common/native/timer.c +++ b/tmk_core/common/native/timer.c @@ -14,4 +14,14 @@ * along with this program. If not, see . */ +#include "timer.h" + +void timer_init(void) {} + +void timer_clear(void) {} + +uint16_t timer_read(void) { return 0; } +uint32_t timer_read32(void) { return 0; } +uint16_t timer_elapsed(uint16_t last) { return 0; } +uint32_t timer_elapsed32(uint32_t last) { return 0; }