thorv
thorv
### Describe the problem The Arduino IDE crashes at the end of the splash. ### To reproduce Set the Prefereces / Additional Boards Manager URLs to https://raw.githubusercontent.com/espressif/arduino-esp32/gh-pages/ I know this...
solve issue https://github.com/arduino/ArduinoCore-megaavr/issues/132#issue-1987558495
I am using Arduino nano every, Board lib: Arduino megaAVR Boards 1.8.8. I tried the following program: ```C++ #include SoftwareSerial ser(4,5); void setup() { Serial.begin(9600); Serial.println("START"); Serial1.begin(9600); ser.begin(9600); ser.println("ABC"); delay(10);...
Board: Arduino Due, Board library: Arduino SAM Boards 1.6.12 'Hello' does not appear in the output of Serial1(TX1) in the following program. Uncomment 'PA11 DISABLE' line, then it works. ```...