lbernstone
lbernstone
> (Disclaimer: I don't have this hardware. This is just a fly-by of reading open issues that I may have some experience with...) > > Try changing the flash mode...
The configuration capacity to have multiple board types only came about in v2.0. That was just over a year ago. The need was critical for the new devices, and so...
The ESP32-U4WDH is the re-release of an SoC originally called ESP32-SOLO (circa 2018?). The Solo is no longer available, but the U4WDH and modules based on it can still be...
Can you submit a PR with your changes? I recommend not using a partition for your read-only files, but rather including them in your firmware as C-string arrays. You can...
Ok. Whoever has to support this is going to looove you.
I don't mean the feature request, which seems like a fine idea, but your system, where the html app is going to be able to get out of sync with...
How about if we supercede the updateSpiffs idea, and if you call HTTPUpdate(const char* partition), it will search for that partition, attempt to determine the partition type, and call the...
Looks like where I am headed is making a completely alternate route in Update::begin, with a command called U_AUTO, which will use the label name. That way it is a...
You can use HTTPClient::errorToString() to turn that into a text response. In this case it is a read timeout, most likely when waiting for the server to give you a...
This is an error in the 3rd party library. In the .h file, it is defined as a double, in the .c it is redefined as const double. Change the...