This results into a reboot:
char str[80];
sprintf(str,PSTR("This is a demo: %s for sprintf from flash"),"test123");
Serial.println(str);
Or should I be using sprint_P() but that seems unavailable on ESP.
How to use progmem strings as param to sprintf() ?
This results into a reboot:
char str[80];
sprintf(str,PSTR("This is a demo: %s for sprintf from flash"),"test123");
Serial.println(str);
Or should I be using sprint_P() but that seems unavailable on ESP.
How to use progmem strings as param to sprintf() ?