From 5173891a0fb7dfca9ff5127ab3e0725aec8e3cab Mon Sep 17 00:00:00 2001 From: George Wright Date: Sat, 7 Dec 2024 13:12:44 -0800 Subject: [PATCH] rtc tick interval def --- WindCore/sa1100_defs.h | 1 + 1 file changed, 1 insertion(+) diff --git a/WindCore/sa1100_defs.h b/WindCore/sa1100_defs.h index bf5c0df..5fcc1e4 100644 --- a/WindCore/sa1100_defs.h +++ b/WindCore/sa1100_defs.h @@ -7,6 +7,7 @@ namespace SA1100 { enum { CLOCK_SPEED = 190*1000*1000, // 190MHz TICKS_3_6864_MHZ = CLOCK_SPEED / 3686400, + TICKS_1_HZ = CLOCK_SPEED / 64, // run the RTC a little faster just for testing TICK_INTERVAL = CLOCK_SPEED / 64 }; -- 2.45.2