Skip to content

Commit 7d1f27c

Browse files
committed
Update firmware updaters for Nano33IoT
1 parent cc0563e commit 7d1f27c

File tree

2 files changed

+6
-0
lines changed

2 files changed

+6
-0
lines changed

examples/Tools/FirmwareUpdater/ESP32BootROM.cpp

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,10 @@ int ESP32BootROMClass::begin(unsigned long baudrate)
7979
delay(10);
8080
digitalWrite(_resetnPin, LOW);
8181
delay(100);
82+
#if defined(ARDUINO_SAMD_NANO_33_IOT)
83+
digitalWrite(_resetnPin, HIGH);
84+
delay(100);
85+
#endif
8286
#endif
8387

8488
int synced = 0;

examples/Tools/SerialNINAPassthrough/SerialNINAPassthrough.ino

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,8 @@ void loop() {
6464
if (rts != Serial.rts()) {
6565
#ifdef ARDUINO_SAMD_MKRVIDOR4000
6666
FPGA.digitalWrite(FPGA_SPIWIFI_RESET, (Serial.rts() == 1) ? LOW : HIGH);
67+
#elif defined(ARDUINO_SAMD_NANO_33_IOT)
68+
digitalWrite(NINA_RESETN, Serial.rts() ? LOW : HIGH);
6769
#else
6870
digitalWrite(NINA_RESETN, Serial.rts());
6971
#endif

0 commit comments

Comments
 (0)