File tree 2 files changed +9
-0
lines changed
2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 39
39
- name: Arduino_DebugUtils
40
40
sketch-paths : |
41
41
- examples/OTA_Qspi_Flash
42
+ - examples/OTA_Qspi_Flash_Ethernet
42
43
- examples/OTA_SD_Portenta
43
44
- examples/OTA_Usage_Portenta
44
45
- fqbn : arduino:mbed_nicla:nicla_vision
Original file line number Diff line number Diff line change 33
33
static char const SSID[] = SECRET_SSID; /* your network SSID (name) */
34
34
static char const PASS[] = SECRET_PASS; /* your network password (use for WPA, or use as key for WEP) */
35
35
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)
36
39
static char const OTA_FILE_LOCATION[] = " http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.PORTENTA_H7_M7.ota" ;
40
+ #elif defined(ARDUINO_OPTA)
41
+ static char const OTA_FILE_LOCATION[] = " http://downloads.arduino.cc/ota/OTA_Usage_Portenta.ino.OPTA.ota" ;
42
+ #else
43
+ #error "Board not supported"
44
+ #endif
37
45
38
46
/* *****************************************************************************
39
47
* SETUP/LOOP
You can’t perform that action at this time.
0 commit comments