You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.pio/libdeps/esp32-s3-wroom-N8R8/WiFiManager/WiFiManager.cpp:150:100: required from here
.pio/libdeps/esp32-s3-wroom-N8R8/WiFiManager/WiFiManager.cpp:3405:23: error: format '%lu' expects argument of type 'long unsigned int', but argument 3 has type 'uint32_t' {aka 'unsigned int'} [-Werror=format=]
_debugPort.printf("[MEM] free: %5lu | max: %5u | frag: %3u%% \n", free, max, frag);
Changing %5lu to %5u eliminates all -Wall warnings.
Changing %5lu to %5u eliminates all -Wall warnings.
_debugPort.printf("[MEM] free: %5u | max: %5u | frag: %3u%% \n", free, max, frag);
//_debugPort.printf("[MEM] free: %5lu | max: %5u | frag: %3u%% \n", free, max, frag);
The text was updated successfully, but these errors were encountered: