We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e7aa0d commit 67e6208Copy full SHA for 67e6208
examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino
@@ -66,6 +66,14 @@ void setup()
66
Arduino_Portenta_OTA_QSPI ota(QSPI_FLASH_FATFS_MBR, 2);
67
Arduino_Portenta_OTA::Error ota_err = Arduino_Portenta_OTA::Error::None;
68
69
+ if (!ota.isOtaCapable())
70
+ {
71
+ Serial.println("Higher version bootloader required to perform OTA.");
72
+ Serial.println("Please update the bootloader.");
73
+ Serial.println("File -> Examples -> Portenta_System -> PortentaH7_updateBootloader");
74
+ return;
75
+ }
76
+
77
Serial.println("Initializing OTA storage");
78
if ((ota_err = ota.begin()) != Arduino_Portenta_OTA::Error::None)
79
{
0 commit comments