From 62ebb2723acc23bc31c38cb787178c4e64fc88c0 Mon Sep 17 00:00:00 2001 From: Daniel Kucera Date: Tue, 27 Feb 2024 22:39:43 +0100 Subject: [PATCH] fix crash on OTA start - don't stop bus --- src/main.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/main.cpp b/src/main.cpp index 8daaf3c..4d2f83d 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -343,10 +343,6 @@ void setup() { wifiServerEnh.begin(); statusServer.begin(); - // Stop the Bus when the OTA update starts, because it interferes with the OTA process - ArduinoOTA.onStart([]() { - Bus.end(); - }); ArduinoOTA.begin(); MDNS.end();