Skip to content

Commit dcdda0c

Browse files
ci(pre-commit): Apply automatic fixes
1 parent 99dcfaf commit dcdda0c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cores/esp32/esp32-hal-uart.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -498,7 +498,7 @@ uart_t *uartBegin(
498498
}
499499
uart_config_t uart_config;
500500
memset(&uart_config, 0, sizeof(uart_config_t));
501-
uart_config.flags.backup_before_sleep = false; // new flag from IDF v5.3
501+
uart_config.flags.backup_before_sleep = false; // new flag from IDF v5.3
502502
uart_config.data_bits = (config & 0xc) >> 2;
503503
uart_config.parity = (config & 0x3);
504504
uart_config.stop_bits = (config & 0x30) >> 4;

0 commit comments

Comments
 (0)