Skip to content

Commit 7954275

Browse files
committed
Fix filesystem issue.
1 parent b851526 commit 7954275

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ void loop()
197197

198198
Serial.println("\nDownload firmware file...\n");
199199

200-
// In ESP8266, this function will allocate 16k+ memory for internal SSL client.
200+
// This function will allocate 16k+ memory for internal SSL client.
201201
// In Pico, the free space of device should be larger than the firmware file size.
202202
// You can upload blank filesystem image to clear the space.
203203
if (!Firebase.RTDB.downloadOTA(&fbdo, F("test/firmware/bin"), rtdbDownloadCallback /* callback function */))

examples/Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ void loop()
161161

162162
Serial.println("\nDownload firmware file...\n");
163163

164-
// In ESP8266, this function will allocate 16k+ memory for internal SSL client.
164+
// This function will allocate 16k+ memory for internal SSL client.
165165
if (!Firebase.Storage.downloadOTA(&fbdo, STORAGE_BUCKET_ID /* Firebase Storage bucket id */, "<firmware.bin>" /* path of firmware file stored in the bucket */, fcsDownloadCallback /* callback function */))
166166
Serial.println(fbdo.errorReason());
167167
}

examples/Storage/GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ void loop()
154154

155155
Serial.println("\nDownload firmware file OTA with Google Cloud Storage JSON API...\n");
156156

157-
// In ESP8266, this function will allocate 16k+ memory for internal SSL client.
157+
// This function will allocate 16k+ memory for internal SSL client.
158158
// In Pico, the free space of device should be larger than the firmware file size.
159159
// You can upload blank filesystem image to clear the space.
160160
if (!Firebase.GCStorage.downloadOTA(&fbdo, STORAGE_BUCKET_ID /* Firebase Storage bucket id */, "<firmware.bin>" /* path of firmware file stored in the bucket */, gcsDownloadCallback /* callback function */))

0 commit comments

Comments
 (0)