From 7954275abd16f6153524bbb3753fb8ac97353bef Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 14 Sep 2023 15:54:45 +0700 Subject: [PATCH] Fix filesystem issue. --- examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino | 2 +- .../Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino | 2 +- .../GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino b/examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino index 6424438a5..1fadec8be 100644 --- a/examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino +++ b/examples/RTDB/DownloadFileOTA/DownloadFileOTA.ino @@ -197,7 +197,7 @@ void loop() Serial.println("\nDownload firmware file...\n"); - // In ESP8266, this function will allocate 16k+ memory for internal SSL client. + // This function will allocate 16k+ memory for internal SSL client. // In Pico, the free space of device should be larger than the firmware file size. // You can upload blank filesystem image to clear the space. if (!Firebase.RTDB.downloadOTA(&fbdo, F("test/firmware/bin"), rtdbDownloadCallback /* callback function */)) diff --git a/examples/Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino b/examples/Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino index ba2b8048c..7ef59b64b 100644 --- a/examples/Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino +++ b/examples/Storage/FirebaseStorage/DownloadFileOTA/DownloadFileOTA.ino @@ -161,7 +161,7 @@ void loop() Serial.println("\nDownload firmware file...\n"); - // In ESP8266, this function will allocate 16k+ memory for internal SSL client. + // This function will allocate 16k+ memory for internal SSL client. if (!Firebase.Storage.downloadOTA(&fbdo, STORAGE_BUCKET_ID /* Firebase Storage bucket id */, "" /* path of firmware file stored in the bucket */, fcsDownloadCallback /* callback function */)) Serial.println(fbdo.errorReason()); } diff --git a/examples/Storage/GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino b/examples/Storage/GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino index c1114a484..b71bf93cd 100644 --- a/examples/Storage/GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino +++ b/examples/Storage/GoogleCloudStorage/DownloadFileOTA/DownloadFileOTA.ino @@ -154,7 +154,7 @@ void loop() Serial.println("\nDownload firmware file OTA with Google Cloud Storage JSON API...\n"); - // In ESP8266, this function will allocate 16k+ memory for internal SSL client. + // This function will allocate 16k+ memory for internal SSL client. // In Pico, the free space of device should be larger than the firmware file size. // You can upload blank filesystem image to clear the space. if (!Firebase.GCStorage.downloadOTA(&fbdo, STORAGE_BUCKET_ID /* Firebase Storage bucket id */, "" /* path of firmware file stored in the bucket */, gcsDownloadCallback /* callback function */))