diff --git a/examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino b/examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino index 0bd0689..c09091d 100644 --- a/examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino +++ b/examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino @@ -3,7 +3,7 @@ * a firmware image stored on the QSPI. * * Steps: - * 1) Create a sketch for the Portenta H7 and verifiy + * 1) Create a sketch for the Portenta H7 and verify * that it both compiles and works on a board. * 2) In the IDE select: Sketch -> Export compiled Binary. * 3) Create an OTA update file utilising the tools 'lzss.py' and 'bin2ota.py' stored in diff --git a/examples/OTA_SD_Portenta/OTA_SD_Portenta.ino b/examples/OTA_SD_Portenta/OTA_SD_Portenta.ino index 0a9fc96..cd2440d 100644 --- a/examples/OTA_SD_Portenta/OTA_SD_Portenta.ino +++ b/examples/OTA_SD_Portenta/OTA_SD_Portenta.ino @@ -3,7 +3,7 @@ * a firmware image stored on the SD. * * Steps: - * 1) Create a sketch for the Portenta H7 and verifiy + * 1) Create a sketch for the Portenta H7 and verify * that it both compiles and works on a board. * 2) In the IDE select: Sketch -> Export compiled Binary. * 3) Create an OTA update file utilising the tools 'lzss.py' and 'bin2ota.py' stored in diff --git a/examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino b/examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino index 9481df9..50a7cb8 100644 --- a/examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino +++ b/examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino @@ -1,9 +1,9 @@ /* This sketch can be used to generate an example binary that can be uploaded to Portenta via OTA. It needs to be used together with - - 'OTA_Qspi_Flash.ino' if you want to use the Qspi Flash as storage system + - 'OTA_Qspi_Flash.ino' if you want to use the QSPI Flash as storage system OR - - 'SD_Qspi_Flash.ino' if you want to use the SD card as storage system + - 'OTA_SD_Portenta.ino' if you want to use the SD card as storage system Steps to test OTA on Portenta: 1) Upload this sketch or any other sketch (this one lights up the RGB LED with different colours). @@ -46,13 +46,13 @@ void setup() } void loop() -{ //led BLUE ON +{ // Blue LED on setLed(1, 0, 0); delay(1000); - //led GREEN ON + // Green LED on setLed(0, 1, 0); delay(1000); - //led RED ON + // Red LED on setLed(0, 0, 1); delay(1000); }