From dcdda0cdd36c8974043049f736b65c3acae788bc Mon Sep 17 00:00:00 2001 From: "pre-commit-ci-lite[bot]" <117423508+pre-commit-ci-lite[bot]@users.noreply.github.com> Date: Wed, 28 Aug 2024 06:56:15 +0000 Subject: [PATCH] ci(pre-commit): Apply automatic fixes --- cores/esp32/esp32-hal-uart.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cores/esp32/esp32-hal-uart.c b/cores/esp32/esp32-hal-uart.c index fa5f8c83150..c2065e806c4 100644 --- a/cores/esp32/esp32-hal-uart.c +++ b/cores/esp32/esp32-hal-uart.c @@ -498,7 +498,7 @@ uart_t *uartBegin( } uart_config_t uart_config; memset(&uart_config, 0, sizeof(uart_config_t)); - uart_config.flags.backup_before_sleep = false; // new flag from IDF v5.3 + uart_config.flags.backup_before_sleep = false; // new flag from IDF v5.3 uart_config.data_bits = (config & 0xc) >> 2; uart_config.parity = (config & 0x3); uart_config.stop_bits = (config & 0x30) >> 4;