Increase printf stub buffer to 256 bytes

This commit is contained in:
J. Nick Koston
2026-03-08 01:07:17 -10:00
parent 6feb0108f0
commit 6d3c738de2
+1 -1
View File
@@ -20,7 +20,7 @@
namespace esphome::esp8266 {}
static constexpr size_t PRINTF_BUFFER_SIZE = 128;
static constexpr size_t PRINTF_BUFFER_SIZE = 256;
// These stubs are essentially dead code at runtime — ESPHome uses ets_printf
// for logging, and the Arduino core's Serial.printf() has its own implementation.