Minimize blocking during multi-wifi reconnect #6
Description
Is your feature request related to a problem? Please describe.
ESP8266
If wifi is lost, the device will wait CONFIG_TIMEOUT until attempting a reconnect. The reconnect (connectMultiWifi) attempts to reconnect a hard coded 10 times (with ~3 second delays).
The problem that I have for a remote IOT device (PID temperature controller, 1 second sampling frequency) is that the reconnect attempts are blocking. the amount of time stuck in reconnect can be significant (at least 60 seconds for minimum 2 reconnect attempts + 30second connect attempt after reset).
Describe the solution you'd like
I'd like the reconnect attempts (connectMultiWifi) to be adjustable (or less) to limit time spent blocking main loop. Currently this is hardcoded.
Describe alternatives you've considered
changing specific hardcoded attempts to a define.
Additional context
Add any other context or screenshots about the feature request here.