From 732a680ad812e3200c5f37e787af5c724f91e4b2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 13:28:58 -0500 Subject: [PATCH] spelling: enter Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/fw/kernel/util/stop.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/fw/kernel/util/stop.c b/src/fw/kernel/util/stop.c index 688ff90d..4b12587f 100644 --- a/src/fw/kernel/util/stop.c +++ b/src/fw/kernel/util/stop.c @@ -108,7 +108,7 @@ void enter_stop_mode(void) { do_wfi(); // Wait for Interrupt (enter sleep mode). Work around F2/F4 errata. __ISB(); // Let the pipeline catch up (force the WFI to activate before moving on). - // Tell the processor not to emter deepsleep mode for future WFIs. + // Tell the processor not to enter deepsleep mode for future WFIs. SCB->SCR &= ~SCB_SCR_SLEEPDEEP_Msk; // Stop mode will change our system clock to the HSI. Move it back to the PLL.