From 7b1c1e5076297e11ac1809e4b482e8bc981de293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikael=20=C3=85gren?= Date: Wed, 21 May 2025 16:17:06 +0200 Subject: [PATCH] testapp: Update to 24 MHz clock --- hw/application_fpga/apps/testapp/main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hw/application_fpga/apps/testapp/main.c b/hw/application_fpga/apps/testapp/main.c index a1adeee..6b773d0 100644 --- a/hw/application_fpga/apps/testapp/main.c +++ b/hw/application_fpga/apps/testapp/main.c @@ -214,8 +214,8 @@ int main(void) } puts(IO_CDC, "\r\nTesting timer... 3"); - // Matching clock at 21 MHz, giving us timer in seconds - *timer_prescaler = 21 * 1000000; + // Matching clock at 24 MHz, giving us timer in seconds + *timer_prescaler = 24 * 1000000; // Test timer expiration after 1s *timer = 1;