We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15e87ae commit 66c9ddbCopy full SHA for 66c9ddb
cores/esp32/esp32-hal-uart.c
@@ -497,7 +497,7 @@ uart_t *uartBegin(
497
log_v("UART%d not installed. Starting installation", uart_nr);
498
}
499
uart_config_t uart_config;
500
- uart_config.flags.backup_before_sleep = false; // necessary within IDF 5.3
+ uart_config.flags.backup_before_sleep = false; // necessary within IDF v5.3
501
uart_config.data_bits = (config & 0xc) >> 2;
502
uart_config.parity = (config & 0x3);
503
uart_config.stop_bits = (config & 0x30) >> 4;
0 commit comments