From 2a9f359b51f53fb2046488cb2fb1715aab348c47 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 12:18:59 -0500 Subject: [PATCH] spelling: accuracy Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/drivers/stm32f4/rtc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/drivers/stm32f4/rtc.c b/src/fw/drivers/stm32f4/rtc.c index cbe35f2c..a8a64232 100644 --- a/src/fw/drivers/stm32f4/rtc.c +++ b/src/fw/drivers/stm32f4/rtc.c @@ -213,7 +213,7 @@ void rtc_alarm_init(void) { RTC_WakeUpCmd(DISABLE); // Make sure this in in sync with the definition of LSE_FREQUENCY_HZ. This is the lowest setting - // for the highest frequency and therefore the highest accurracy. However, it limits us to only + // for the highest frequency and therefore the highest accuracy. However, it limits us to only // setting wakeup timers for up to 4s~ (2^16 max counter value / (32768 / 2)) in the future. // This is fine for now as we have a regular timer register each second, so we'll never want to // stop for more than a single second.