Skip to content

Commit 10758a6

Browse files
authored
Fix MKR Vidor 4000 Serial.dts
This value is incorrect and prevents GPIO0 from being pulled at the right time, so esptool could not detect the board at all. Now, it works perfectly with the added --no-stub parameter. See this forum post for further discussion: https://forum.arduino.cc/index.php?topic=596970.0
1 parent 56c4cb9 commit 10758a6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/Tools/SerialNINAPassthrough/SerialNINAPassthrough.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ void loop() {
7474

7575
if (dtr != Serial.dtr()) {
7676
#ifdef ARDUINO_SAMD_MKRVIDOR4000
77-
FPGA.digitalWrite(FPGA_NINA_GPIO0, (Serial.dtr() == 1) ? HIGH : LOW);
77+
FPGA.digitalWrite(FPGA_NINA_GPIO0, (Serial.dtr() == 0) ? HIGH : LOW);
7878
#else
7979
digitalWrite(NINA_GPIO0, (Serial.dtr() == 0) ? HIGH : LOW);
8080
#endif

0 commit comments

Comments
 (0)