spelling: configurable

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 13:19:17 -05:00
parent a40b21060d
commit 15d5df83b8

View file

@ -17,6 +17,6 @@
#include "mcu/interrupts.h" #include "mcu/interrupts.h"
bool mcu_state_are_interrupts_enabled(void) { bool mcu_state_are_interrupts_enabled(void) {
// When this bit is set, all interrupts (of configureable priority) are disabled // When this bit is set, all interrupts (of configurable priority) are disabled
return ((__get_PRIMASK() & 0x1) == 0x0); return ((__get_PRIMASK() & 0x1) == 0x0);
} }