We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab46291 commit 62a460fCopy full SHA for 62a460f
cores/esp8266/Print.cpp
@@ -49,7 +49,7 @@ size_t Print::printf(const char *format, ...) {
49
va_start(arg, format);
50
char temp[256];
51
size_t len = ets_vsnprintf(temp, 256, format, arg);
52
- len = write((const char *)temp);
+ len = print(temp);
53
va_end(arg);
54
return len;
55
}
0 commit comments