Skip to content

Commit 184949e

Browse files
committed
only test pyportals
1 parent 774f99f commit 184949e

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

Adafruit_ESP32_Arduino_Demos/ESP32_QSPIFirmwareUpdater/.pyportal.test.only

Whitespace-only changes.

Adafruit_ESP32_Arduino_Demos/ESP32_QSPIFirmwareUpdater/ESP32_QSPIFirmwareUpdater.ino

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,8 @@
3636
#define SPIWIFI_ACK 11 // a.k.a BUSY or READY pin
3737
#define ESP32_GPIO0 10
3838
#define NEOPIXEL_PIN 8
39+
#endif
40+
3941

4042
#if defined(EXTERNAL_FLASH_USE_QSPI)
4143
Adafruit_FlashTransport_QSPI flashTransport;
@@ -45,11 +47,10 @@
4547

4648
#else
4749
#error No QSPI/SPI flash are defined on your board variant.h !
48-
#endif
49-
Adafruit_SPIFlash flash(&flashTransport);
50-
5150
#endif
5251

52+
Adafruit_SPIFlash flash(&flashTransport);
53+
5354
// file system object from SdFat
5455
FatFileSystem fatfs;
5556

@@ -78,7 +79,7 @@ void setup() {
7879
}
7980

8081

81-
myFile = fatfs.open("/NINA_W102-1.7.0.bin", FILE_READ);
82+
myFile = fatfs.open("/NINA HCI BT.bin", FILE_READ);
8283
if (!myFile) {
8384
Serial.println("Failed to open firmware file");
8485
while (1);

0 commit comments

Comments
 (0)