mirror of
https://github.com/esphome/esphome.git
synced 2026-03-01 02:14:19 -07:00
Fix config path in comments: esp32 framework advanced
This commit is contained in:
@@ -46,7 +46,7 @@ static int write_printf_buffer_(FILE *stream, char *buf, int len) {
|
||||
size_t write_len = len;
|
||||
if (write_len >= PRINTF_BUFFER_SIZE) {
|
||||
fwrite(buf, 1, PRINTF_BUFFER_SIZE - 1, stream);
|
||||
esp_system_abort("printf buffer overflow; set enable_full_printf: true in esp32 advanced config");
|
||||
esp_system_abort("printf buffer overflow; set enable_full_printf: true in esp32 framework advanced config");
|
||||
}
|
||||
if (fwrite(buf, 1, write_len, stream) < write_len || ferror(stream)) {
|
||||
return -1;
|
||||
|
||||
Reference in New Issue
Block a user