From 2f7793ddcfa984ab242478388892edb71f37007a Mon Sep 17 00:00:00 2001 From: Theo Arends <11044339+arendst@users.noreply.github.com> Date: Sat, 29 Mar 2025 16:37:48 +0100 Subject: [PATCH] Fix Zigbee XModem wait loop --- tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_9a_upload.ino | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_9a_upload.ino b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_9a_upload.ino index 07add3891..522e19cd3 100644 --- a/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_9a_upload.ino +++ b/tasmota/tasmota_xdrv_driver/xdrv_23_zigbee_9a_upload.ino @@ -144,7 +144,7 @@ char XModemWaitACK(void) { char in_char; do { - uint8_t i = 0; + int i = 0; while (!ZigbeeSerial->available()) { delayMicroseconds(100); i++;