Skip to content

Commit d5cfc1b

Browse files
committed
Add Nicla Vison binary download url
1 parent feb4e28 commit d5cfc1b

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino

+6
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,13 @@
3333
static char const SSID[] = SECRET_SSID; /* your network SSID (name) */
3434
static char const PASS[] = SECRET_PASS; /* your network password (use for WPA, or use as key for WEP) */
3535

36+
#if defined(ARDUINO_NICLA_VISION)
37+
static char const OTA_FILE_LOCATION[] = "http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.NICLA_VISION.ota";
38+
#elif defined(ARDUINO_PORTENTA_H7_M7)
3639
static char const OTA_FILE_LOCATION[] = "http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota";
40+
#else
41+
#error "Board not supported"
42+
#endif
3743

3844
/******************************************************************************
3945
* SETUP/LOOP

0 commit comments

Comments
 (0)