tobozo

Results 711 comments of tobozo

So, after updating to esp32 core 2.0.0 and editing your script, I can't reproduce the error :thinking: [edit] My mistake, I didn't merge on the master the latest changes for...

hey @hideakitai thanks for your very interesting feedback, If you have a code implementation in mind I'll be happy to review it and learn from it, but I have no...

gz == `gzReadByte` is used by one decompression method of GZUnpacker to access both the beginning and the end of the file. This method needs the entire file to be...

hey thanks for your feedback :-) just don't use setupFSCallbacks() with OTA Update and it should be fine

two different places :thinking: maybe it doesn't like multiple instances ? What does the targz setup code look like, can you share a snippet with all the statements calling this...

interesting, this makes me realize there's no test suite for using `gzStreamUpdater()` with HTTP stream Can you try to add this: ```C GZUnpacker->setupFSCallbacks( nullprt, nullptr ); ``` then try to...

idea: separate the gathering of the http stream pointer from the gz logic Here's a function I use for that, it can even follow redirects: ```C++ #include #include #include HTTPClient...

I've updated the example with a gzStreamUpdater test: https://github.com/tobozo/ESP32-targz/tree/1.0.5-beta/examples/ESP32/Update_from_gz_stream I don't see a compilation error but I've only tested with Arduino IDE, does it compile in your platformio environment ?

@tibotix doing this breaks esp8266 compatibility, but I'm not sure I'll keep on maintaining the esp8266 part of the library so I'll keep your suggestion in mind

@monte-monte this was solved a year ago, what core and library versions are you using?