Add small delay before setting up app in safe mode (#3323)

This commit is contained in:
Jesse Hills 2022-03-23 11:12:22 +13:00
parent 4e4a512107
commit 9a9d5964ee
No known key found for this signature in database
GPG Key ID: BEAAE804EFD8E83A

View File

@ -473,6 +473,8 @@ bool OTAComponent::should_enter_safe_mode(uint8_t num_attempts, uint32_t enable_
App.reboot();
});
// Delay here to allow power to stabilise before Wi-Fi/Ethernet is initialised.
delay(100); // NOLINT
App.setup();
ESP_LOGI(TAG, "Waiting for OTA attempt.");