Skip to content

Commit 7c03902

Browse files
committed
Fix typos in comments
1 parent f98dc52 commit 7c03902

13 files changed

+13
-13
lines changed

examples/OTA_Internal_Flash/OTA_Internal_Flash.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ void setup()
2828
return;
2929
}
3030

31-
/* This functions set's the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
31+
/* This function sets the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
3232
ota.setUpdateLen(131728);
3333

3434
Serial.println("Storing parameters for firmware update in bootloader accessible non-volatile memory");

examples/OTA_Qspi_Flash/OTA_Qspi_Flash.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void setup()
2323
return;
2424
}
2525

26-
/* This functions set's the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
26+
/* This function sets the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
2727
ota.setUpdateLen(131728);
2828

2929
Serial.println("Storing parameters for firmware update in bootloader accessible non-volatile memory");

examples/OTA_SD_Portenta/OTA_SD_Portenta.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ void setup()
2323
return;
2424
}
2525

26-
/* This functions set's the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
26+
/* This function sets the precise length of update binary, in this case of OTA_Usage_Portenta.ino.PORTENTA_H7_M7.bin */
2727
ota.setUpdateLen(131728);
2828

2929
Serial.println("Storing parameters for firmware update in bootloader accessible non-volatile memory");

examples/OTA_Usage_Portenta/OTA_Usage_Portenta.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Steps to update sketch:
66
1) Upload this sketch or any other sketch (this one lights the LED up with different colours).
77
2) In the IDE select: Sketch -> Export compiled Binary
8-
3) Open the location of the sketch and to choose the next step according to the desired storage type:
8+
3) Open the location of the sketch and choose the next step according to the desired storage type:
99
- SD: copy the binary to the SD with the name "UPDATE.BIN"
1010
- INTERNAL FLASH:
1111
- QSPI Flash:

library.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ version=0.1.0
33
author=Arduino
44
maintainer=Arduino <[email protected]>
55
sentence=Firmware update for the Portenta H7.
6-
paragraph=This library allows to perform a firmware update on the Arduino Portenta H7. The firmware can be stored in various different locations such as within the microcontrolllers flash, on an external SD card or on the QSPI flash chip.
6+
paragraph=This library allows performing a firmware update on the Arduino Portenta H7. The firmware can be stored in various different locations such as within the microcontroller's flash, on an external SD card or on the QSPI flash chip.
77
category=Communication
88
url=https://github.com/arduino-libraries/Arduino_Portenta_OTA
99
architectures=mbed

src/Arduino_Portenta_OTA.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2019 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2019 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_InternalFlash.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_InternalFlash.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_QSPI.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_QSPI.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_SD.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

src/Arduino_Portenta_OTA_SD.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
This file is part of ArduinoIoTCloud.
2+
This file is part of Arduino_Portenta_OTA.
33
44
Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
55

0 commit comments

Comments
 (0)