wokwi-features
wokwi-features copied to clipboard
Step over standard lib functions while single stepping
trafficstars
I would like to avoid stepping into standard library functions
Using stock calculator.ino example
I don't need to step into the string assignments/comparisons logic on a line like
String current = "" or current += String(key);
Stepping into the first line eventually hits this function and hangs with the call stack disappearing
unsigned char String::changeBuffer(unsigned int maxStrLen) { char *newbuffer = (char *)realloc(buffer, maxStrLen + 1); <~~~~ Debugger hangs here if (newbuffer) { buffer = newbuffer; capacity = maxStrLen; return 1; } return 0; }