Fix config path in comments: esp32 framework advanced

This commit is contained in:
J. Nick Koston
2026-02-27 12:47:08 -10:00
parent 35ac7a16f9
commit 0e14d0b0a0

View File

@@ -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;