From be47608a03465f134357383135156accfdc33ac8 Mon Sep 17 00:00:00 2001 From: Eyck-Alexander Jentzsch Date: Sat, 21 Mar 2026 17:53:43 +0100 Subject: [PATCH] corrects hwtimer TICKNUM this change went unnoticed when moving the file into moonlight/inc --- port/moonlight/inc/hwtimer.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/port/moonlight/inc/hwtimer.h b/port/moonlight/inc/hwtimer.h index 0c339fd..fb7e7a9 100644 --- a/port/moonlight/inc/hwtimer.h +++ b/port/moonlight/inc/hwtimer.h @@ -15,7 +15,7 @@ #include "platform.h" #define TICKNUM_PER_SECOND 32768 -#define TICKNUM_PER_TIMER (TICKNUM_PER_SECOND / 1000) // ~ 1ms timer +#define TICKNUM_PER_TIMER (TICKNUM_PER_SECOND / 100) // ~ 1ms timer static inline int hwtimer_init(void) {