SerialDebug icon indicating copy to clipboard operation
SerialDebug copied to clipboard

Debug in setup() and ESP32

Open duccio opened this issue 6 years ago • 0 comments

I'm successfully using SerialDebug and the SerialDebugApp with my AVR hardware.

Using it with ESP32 I have the problem I cannot "debug" in the setup function, maybe is a "problem" with SerialDebugApp because I can see all debug messages in Serial monitor.

My setup function is:

void setup() {
  Serial.begin(115200);
  delay(500);
  Serial.println();
  debugA("**** Setup: initializing ...");
}

I tried to increase the "delay" but I can see messages in SerialDebugApp only if I set a delay of 5000.

Is there a workaround to see debug messages in the setup function also in SerialDebugApp? I really like the App because of colors and watches panels on the right.

Thanks!

duccio avatar Dec 26 '19 16:12 duccio