From a9f15ae379e363aacaf9b9eed5d6aa9f29664ebd Mon Sep 17 00:00:00 2001 From: ortegafernando Date: Sat, 24 Sep 2022 17:11:20 +0200 Subject: [PATCH] Software Serial buffer to MIN_INPUT_BUFFER_SIZE Increase software serial buffer to MIN_INPUT_BUFFER_SIZE --- tasmota/tasmota_xdrv_driver/xdrv_08_serial_bridge.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_08_serial_bridge.ino b/tasmota/tasmota_xdrv_driver/xdrv_08_serial_bridge.ino index 952cde978..e8c156a5d 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_08_serial_bridge.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_08_serial_bridge.ino @@ -28,7 +28,7 @@ #define USE_SERIAL_BRIDGE_TEE #ifdef ESP8266 -const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = 130; +const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = MIN_INPUT_BUFFER_SIZE; #else const uint16_t SERIAL_BRIDGE_BUFFER_SIZE = INPUT_BUFFER_SIZE; #endif