File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
Adafruit_ESP32_Arduino_Demos/ESP32_QSPIFirmwareUpdater Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 36
36
#define SPIWIFI_ACK 11 // a.k.a BUSY or READY pin
37
37
#define ESP32_GPIO0 10
38
38
#define NEOPIXEL_PIN 8
39
+ #endif
40
+
39
41
40
42
#if defined(EXTERNAL_FLASH_USE_QSPI)
41
43
Adafruit_FlashTransport_QSPI flashTransport;
45
47
46
48
#else
47
49
#error No QSPI/SPI flash are defined on your board variant.h !
48
- #endif
49
- Adafruit_SPIFlash flash (&flashTransport);
50
-
51
50
#endif
52
51
52
+ Adafruit_SPIFlash flash (&flashTransport);
53
+
53
54
// file system object from SdFat
54
55
FatFileSystem fatfs;
55
56
@@ -78,7 +79,7 @@ void setup() {
78
79
}
79
80
80
81
81
- myFile = fatfs.open (" /NINA_W102-1.7.0 .bin" , FILE_READ);
82
+ myFile = fatfs.open (" /NINA HCI BT .bin" , FILE_READ);
82
83
if (!myFile) {
83
84
Serial.println (" Failed to open firmware file" );
84
85
while (1 );
You can’t perform that action at this time.
0 commit comments