-
Notifications
You must be signed in to change notification settings - Fork 13.3k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Downloading large files to spiffs via https #5175
Comments
Please more details, fill the issue template ! |
Apologies. Here it is. Basic Infos
Platform
Settings in IDE
Problem DescriptionI need to download a file from an HTTPS service directly into SPIFFS, as I used to do successfully with plain HTTP with files larger than the available RAM (e.g. json files). MCVE Sketch
Debug Messages
|
This is an AxTLS known bug. You should try BearSSL. Check this. |
Hi d-a-v, thanks for the hint. |
@MarcFinns that's a feature, not a bug. :) ~4.5K are taken from the heap to use as a 2nd stack as long as there is at least one If you've got something like
and still seeing the heap used, that's a bug and I'll need a MCVE to reproduce and debug. |
It seems a bug. You get the behavior with both types of allocation and it can be reproduced with 2 lines of code - see below. Is this sufficient to report the bug? #include <ESP8266WiFi.h> void loop() |
Thanks, that'll do. Appreciate the check! I'll look into it. |
large file to Spiffs works for you with BearSSL? up to what size? It does not work for me, issue #4814. |
I used it to download every half hour 24 images of a weather animation. In the web service I can specify the jpg size and I now use 240x200. This means images are 10-25k depending on the cloud patterns. It would not work with axTLS but it works nicely with BearSSL. |
Sorry, I found out in the meantime that my GxEPD2_32_Spiffs_Loader example works with BearSSL. The example bitmaps I download are up to 230k in size. |
BearSSL works with less than that. Have you tried reducing the buffers, not checking the fingerprint and reading the file in chunks?
|
Thank you for your response. I tried to update my MCVE sketch to use with BearSSL to show the issue. But my MCVE sketch works. |
@ZinggJM this thread has gone in several directions already, and is getting a bit long. Given your previous comment, I'm closing it. |
I had used this method (from class Client): |
I am observing at behaviour that I would like to confirm being as expected.
I need to download a file from an HTTPS service into SPIFFS. This file is fairly large and when downloading using HTTP it is not a problem. This is what I have done in other projects for example with the json streaming parser. It looks like HTTPS is instead loading the whole thing in RAM, and then it crashes.
Is this what others are experiencing/ the expected behaviour? Is there a way to do it without lording it in RAM? ?
Thank you.
The text was updated successfully, but these errors were encountered: