File tree Expand file tree Collapse file tree 3 files changed +7
-7
lines changed
Expand file tree Collapse file tree 3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 33 * a firmware image stored on the QSPI.
44 *
55 * Steps:
6- * 1) Create a sketch for the Portenta H7 and verifiy
6+ * 1) Create a sketch for the Portenta H7 and verify
77 * that it both compiles and works on a board.
88 * 2) In the IDE select: Sketch -> Export compiled Binary.
99 * 3) Create an OTA update file utilising the tools 'lzss.py' and 'bin2ota.py' stored in
Original file line number Diff line number Diff line change 33 * a firmware image stored on the SD.
44 *
55 * Steps:
6- * 1) Create a sketch for the Portenta H7 and verifiy
6+ * 1) Create a sketch for the Portenta H7 and verify
77 * that it both compiles and works on a board.
88 * 2) In the IDE select: Sketch -> Export compiled Binary.
99 * 3) Create an OTA update file utilising the tools 'lzss.py' and 'bin2ota.py' stored in
Original file line number Diff line number Diff line change 11/*
22 This sketch can be used to generate an example binary that can be uploaded to Portenta via OTA.
33 It needs to be used together with
4- - 'OTA_Qspi_Flash.ino' if you want to use the Qspi Flash as storage system
4+ - 'OTA_Qspi_Flash.ino' if you want to use the QSPI Flash as storage system
55 OR
6- - 'SD_Qspi_Flash .ino' if you want to use the SD card as storage system
6+ - 'OTA_SD_Portenta .ino' if you want to use the SD card as storage system
77
88 Steps to test OTA on Portenta:
99 1) Upload this sketch or any other sketch (this one lights up the RGB LED with different colours).
@@ -46,13 +46,13 @@ void setup()
4646}
4747
4848void loop ()
49- { // led BLUE ON
49+ { // Blue LED on
5050 setLed (1 , 0 , 0 );
5151 delay (1000 );
52- // led GREEN ON
52+ // Green LED on
5353 setLed (0 , 1 , 0 );
5454 delay (1000 );
55- // led RED ON
55+ // Red LED on
5656 setLed (0 , 0 , 1 );
5757 delay (1000 );
5858}
You can’t perform that action at this time.
0 commit comments