Skip to content

Fix typos in documentation comments #31

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Aug 29, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/OTA_SD_Portenta/OTA_SD_Portenta.ino
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 5 additions & 5 deletions examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino
Original file line number Diff line number Diff line change
@@ -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).
Expand Down Expand Up @@ -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);
}