We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d2100bb commit 99dcfafCopy full SHA for 99dcfaf
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
- memset(&uart_config, 0, sizeof(uart_config_t);
+ memset(&uart_config, 0, sizeof(uart_config_t));
501
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);
0 commit comments