Skip to content

Commit b21c7cd

Browse files
authored
Fix typos in documentation comments (#31)
1 parent b504877 commit b21c7cd

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

examples/OTA_SD_Portenta/OTA_SD_Portenta.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
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

examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
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

4848
void 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
}

0 commit comments

Comments
 (0)