Skip to content

Commit f31b9ba

Browse files
committed
Replace PortentaWiFiFirmwareUpdater with WiFiFirmwareUpdater
1 parent 26cd090 commit f31b9ba

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

libraries/RPC/examples/BootM4_from_SDRAM/BootM4_from_SDRAM.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ void setup() {
3333

3434
int err = ota_data_fs.mount(&ota_data);
3535
if (err) {
36-
Serial.println("Please run PortentaWiFiFirmwareUpdater once");
36+
Serial.println("Please run WiFiFirmwareUpdater once");
3737
while (1) {
3838
delay(10000);
3939
}

libraries/USBMSD/examples/AccessFlashAsUSBDisk/AccessFlashAsUSBDisk.ino

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
QSPI as USB Mass Storage
33
This example shows how to expose a QSPIF BlockDevice (16MB external flash on the Portenta H7)
44
as an USB stick. It can be adapted to any kind of BlockDevice (FlashIAP or either RAM via HeapBlockDevice)
5-
Before loading this example, make sure you execute PortentaWiFiFirmwareUpdater sketch
5+
Before loading this example, make sure you execute WiFiFirmwareUpdater sketch
66
to create and format the proper partitions.
77
*/
88

@@ -22,7 +22,7 @@ void USBMSD::begin()
2222
int err = wifi.mount(&wifi_data);
2323
if (err) {
2424
while (!Serial);
25-
Serial.println("Please run PortentaWiFiFirmwareUpdater before");
25+
Serial.println("Please run WiFiFirmwareUpdater before");
2626
return;
2727
}
2828
ota.mount(&ota_data);

libraries/WiFi/src/WiFi.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ void wiced_filesystem_mount_error(void) {
228228
}
229229

230230
void wiced_filesystem_firmware_error(void) {
231-
Serial.println("Please run the \"PortentaWiFiFirmwareUpdater\" sketch once to install the WiFi firmware.");
231+
Serial.println("Please run the \"WiFiFirmwareUpdater\" sketch once to install the WiFi firmware.");
232232
whd_print_logbuffer();
233233
while (1) {}
234234
}

libraries/doom/examples/Doom/Doom.ino

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Arduino wrapper for DoomGeneric
33
Mouse and keyboard controls are not implemented at the moment.
44
5-
To use the internal QSPI flash as storage, run PortentaWiFiFirmwareUpdater
5+
To use the internal QSPI flash as storage, run WiFiFirmwareUpdater
66
sketch once to create the partitions, AccessFlashAsUSBDisk to expose the QSPI flash
77
as a USB disk, copy DOOM1.WAD in the biggest partition, flash this sketch and you are ready to go :)
88
*/

0 commit comments

Comments
 (0)