From c54407bb825cbf86e4d8231ce709c9549a880d95 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:20:22 -0500 Subject: [PATCH] spelling: continuously Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/services/common/regular_timer.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/services/common/regular_timer.c b/src/fw/services/common/regular_timer.c index 37725e87..c1649d3c 100644 --- a/src/fw/services/common/regular_timer.c +++ b/src/fw/services/common/regular_timer.c @@ -109,7 +109,7 @@ static void timer_callback(void* data) { //! Used only once when we first start up. This should be really close to the 0ms point. static void timer_callback_initializing(void* data) { // FIXME: FreeRTOS timers are subject to skew if something else is running on the millisecond. - // We'll need to continously adjust our timer period in really annoying ways. + // We'll need to continuously adjust our timer period in really annoying ways. new_timer_start(s_timer_id, 1000, timer_callback, NULL, TIMER_START_FLAG_REPEATING); timer_callback(data);