TD-er
TD-er
That's a very reasonable request IMHO to get some idea of 'risk assessment'. Also it would be great to have at least _some_ summary of silicon releases that might be...
N.B. I made [this commit](https://github.com/TD-er/ESPEasy/commit/32b887137d7b3330caa274bb713d86befdef810f) to make it at least compile. Not sure if this does break something or whether the code was already broken...
Theo did mention his Ubiquity network stuff seemed to have a registration TTL (or whatever it is called) of about 10 minutes. I know some HP Aruba switches typically lost...
Plase also check to see if your libraries call `.flush()` instead of `.clear()` as that has recently been changed here: https://github.com/espressif/arduino-esp32/pull/9453 IMHO (or may be IMnsHO) this PR should never...
Do you have "band steering" enabled on your access point? If so, try disabling it. Of try to connect you ESP with forced 802.11g mode (not 802.11n)
```c++ uint8_t protocol = WIFI_PROTOCOL_11B | WIFI_PROTOCOL_11G; // Default to BG esp_wifi_set_protocol(WIFI_IF_STA, protocol); ``` N.B. you need to set these before you make the connection
I just talked to @tonhuisman about this and he mentioned his OTA failures are mainly on the C6. He did also do most of the testing with different timeouts. Could...
I was just thinking... Are the sectors erased while writing or do you call block erase (32k or 64k) before the actual writing to clear out the needed sectors? Typical...
> looking at the packets at the end of transfer would be showing what is exactly happening Not entirely sure what you mean here... "at the end" like the moment...
For some other project I have very recently been looking into timing aspects (and lifetime) of the flash chip types which are also used on ESP boards and I came...