wokwi-features icon indicating copy to clipboard operation
wokwi-features copied to clipboard

Step over standard lib functions while single stepping

Open Emil-DV opened this issue 1 year ago • 0 comments
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; }

Emil-DV avatar Dec 14 '23 03:12 Emil-DV