spelling: separate

Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com>
This commit is contained in:
Josh Soref 2025-01-28 15:40:53 -05:00
parent 394c11d071
commit 586db5b942
4 changed files with 6 additions and 6 deletions

View file

@ -36,7 +36,7 @@ static void dbgserial_interrupt_handler(bool *should_context_switch);
static DbgSerialCharacterCallback s_character_callback;
static TimerID s_stop_mode_timeout_timer;
//! Use a seperate variable so it's safe to check from the ISR.
//! Use a separate variable so it's safe to check from the ISR.
static bool s_stop_mode_inhibited = false;
//! We DMA into this buffer as a circular buffer
@ -64,7 +64,7 @@ static bool prv_uart_irq_handler(UARTDevice *dev, uint8_t data, const UARTRXErro
void dbgserial_input_init(void) {
exti_configure_pin(BOARD_CONFIG.dbgserial_int, ExtiTrigger_Falling, dbgserial_interrupt_handler);
// some platforms have a seperate pin for the EXTI int and the USART
// some platforms have a separate pin for the EXTI int and the USART
if (BOARD_CONFIG.dbgserial_int_gpio.gpio != NULL) {
gpio_input_init(&BOARD_CONFIG.dbgserial_int_gpio);
}