mirror of
https://github.com/0xFEEDC0DE64/arduino-esp32.git
synced 2025-07-29 10:17:15 +02:00
Use static buffer for log_printf
This commit is contained in:
@ -377,7 +377,7 @@ int log_printf(const char *format, ...)
|
||||
if(s_uart_debug_nr < 0){
|
||||
return 0;
|
||||
}
|
||||
char loc_buf[64];
|
||||
static char loc_buf[64];
|
||||
char * temp = loc_buf;
|
||||
int len;
|
||||
va_list arg;
|
||||
|
Reference in New Issue
Block a user