From 1d7498d0b8a7c679d336c983d463673ef80d4b9a Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Fri, 3 May 2024 15:31:48 +0200 Subject: [PATCH] remove serial bridge from safeboot (#21334) * remove serial bridge from safeboot * Enable SPI in ESP32 safeboot --- tasmota/include/tasmota_configurations_ESP32.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tasmota/include/tasmota_configurations_ESP32.h b/tasmota/include/tasmota_configurations_ESP32.h index c7e27be74..0cb372ec9 100644 --- a/tasmota/include/tasmota_configurations_ESP32.h +++ b/tasmota/include/tasmota_configurations_ESP32.h @@ -190,7 +190,8 @@ #if CONFIG_IDF_TARGET_ESP32 #if CONFIG_FREERTOS_UNICORE #undef USE_MQTT_TLS - #define USE_SERIAL_BRIDGE // Add support for software Serial Bridge console Tee (+2k code) +// #define USE_SERIAL_BRIDGE // Add support for software Serial Bridge console Tee (+4.5k code) + #define USE_SPI // Make SPI Ethernet adapters useable (+124 bytes) #define USE_ETHERNET #endif // CONFIG_FREERTOS_UNICORE #endif // CONFIG_IDF_TARGET_ESP32