We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 99dcfaf commit dcdda0cCopy full SHA for dcdda0c
cores/esp32/esp32-hal-uart.c
@@ -498,7 +498,7 @@ uart_t *uartBegin(
498
}
499
uart_config_t uart_config;
500
memset(&uart_config, 0, sizeof(uart_config_t));
501
- 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
502
uart_config.data_bits = (config & 0xc) >> 2;
503
uart_config.parity = (config & 0x3);
504
uart_config.stop_bits = (config & 0x30) >> 4;
0 commit comments