File tree Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Expand file tree Collapse file tree 2 files changed +9
-0
lines changed Original file line number Diff line number Diff line change 3939 - name: Arduino_DebugUtils
4040 sketch-paths : |
4141 - examples/OTA_Qspi_Flash
42+ - examples/OTA_Qspi_Flash_Ethernet
4243 - examples/OTA_SD_Portenta
4344 - examples/OTA_Usage_Portenta
4445 - fqbn : arduino:mbed_nicla:nicla_vision
Original file line number Diff line number Diff line change 3333static char const SSID[] = SECRET_SSID; /* your network SSID (name) */
3434static 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)
3639static 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
3745
3846/* *****************************************************************************
3947 * SETUP/LOOP
You can’t perform that action at this time.
0 commit comments