Hello,
I have cloned the arduino-ide repo (arduino 2.0) and ran it on my Mac (Ventura 13.0.1, M1 chip).
I'm using the ESP32 WROVER-KIT and I have a basic sketch that displays the "Hello World!" text every 10 seconds to the serial monitor and it works great.
However, I'm getting the following output when I'm resetting the board and it's not clear to me if it's the same behaviour for arduino boards, since I only have ESP boards.
The normal text represents the several characters I receive in the serial monitor when I'm resetting the board. I've tried to debug this behaviour and i noticed you are using TextDecoder with 'utf8', so before the decoder, the data array has the following values (represented by the italic text):
,t // [44,116]
4? // [52,63]
( // [40]
� // [32, 184]
� // [32, 236]
4- // [52,45]
I should mention that I work on the Espressif's VsCode extension and I'm trying to create an Exception Decoder prototype for supporting esp-idf on the arduino 2.0 IDE.
Thank you!