File tree 3 files changed +7
-7
lines changed
3 files changed +7
-7
lines changed Original file line number Diff line number Diff line change 3
3
* a firmware image stored on the QSPI.
4
4
*
5
5
* Steps:
6
- * 1) Create a sketch for the Portenta H7 and verifiy
6
+ * 1) Create a sketch for the Portenta H7 and verify
7
7
* that it both compiles and works on a board.
8
8
* 2) In the IDE select: Sketch -> Export compiled Binary.
9
9
* 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 3
3
* a firmware image stored on the SD.
4
4
*
5
5
* Steps:
6
- * 1) Create a sketch for the Portenta H7 and verifiy
6
+ * 1) Create a sketch for the Portenta H7 and verify
7
7
* that it both compiles and works on a board.
8
8
* 2) In the IDE select: Sketch -> Export compiled Binary.
9
9
* 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 1
1
/*
2
2
This sketch can be used to generate an example binary that can be uploaded to Portenta via OTA.
3
3
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
5
5
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
7
7
8
8
Steps to test OTA on Portenta:
9
9
1) Upload this sketch or any other sketch (this one lights up the RGB LED with different colours).
@@ -46,13 +46,13 @@ void setup()
46
46
}
47
47
48
48
void loop ()
49
- { // led BLUE ON
49
+ { // Blue LED on
50
50
setLed (1 , 0 , 0 );
51
51
delay (1000 );
52
- // led GREEN ON
52
+ // Green LED on
53
53
setLed (0 , 1 , 0 );
54
54
delay (1000 );
55
- // led RED ON
55
+ // Red LED on
56
56
setLed (0 , 0 , 1 );
57
57
delay (1000 );
58
58
}
You can’t perform that action at this time.
0 commit comments