diff options
| -rw-r--r-- | tmk_core/common/native/timer.c | 10 |
1 files changed, 10 insertions, 0 deletions
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 @@ | |||
| 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. | 14 | * along with this program. If not, see <http://www.gnu.org/licenses/>. |
| 15 | */ | 15 | */ |
| 16 | 16 | ||
| 17 | #include "timer.h" | ||
| 18 | |||
| 19 | void timer_init(void) {} | ||
| 20 | |||
| 21 | void timer_clear(void) {} | ||
| 22 | |||
| 23 | uint16_t timer_read(void) { return 0; } | ||
| 24 | uint32_t timer_read32(void) { return 0; } | ||
| 25 | uint16_t timer_elapsed(uint16_t last) { return 0; } | ||
| 26 | uint32_t timer_elapsed32(uint32_t last) { return 0; } | ||
| 17 | 27 | ||
