makes the timer tick actually every ms

This commit is contained in:
2026-03-22 21:18:40 +01:00
parent b8d4472657
commit bbbdae160a

View File

@@ -15,7 +15,7 @@
#include "platform.h" #include "platform.h"
#define TICKNUM_PER_SECOND 32768 #define TICKNUM_PER_SECOND 32768
#define TICKNUM_PER_TIMER (TICKNUM_PER_SECOND / 100) // ~ 1ms timer #define TICKNUM_PER_TIMER (TICKNUM_PER_SECOND / 1000) // ~ 1ms timer
static inline int hwtimer_init(void) static inline int hwtimer_init(void)
{ {