We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 129f8fe commit 7360076Copy full SHA for 7360076
cores/esp32/esp32-hal-uart.c
@@ -1112,7 +1112,7 @@ int log_printfv(const char *format, va_list arg) {
1112
return 0;
1113
}
1114
1115
-/*
+ /*
1116
// This causes dead locks with logging in specific cases and also with C++ constructors that may send logs
1117
#if !CONFIG_DISABLE_HAL_LOCKS
1118
if(s_uart_debug_nr != -1 && _uart_bus_array[s_uart_debug_nr].lock){
@@ -1122,7 +1122,7 @@ int log_printfv(const char *format, va_list arg) {
1122
*/
1123
vsnprintf(temp, len + 1, format, arg);
1124
ets_printf("%s", temp);
1125
1126
// This causes dead locks with logging and also with constructors that may send logs
1127
1128
0 commit comments