From d09111960e682796fd7ebd2c9d62752bde24c8bb Mon Sep 17 00:00:00 2001 From: Paul Date: Tue, 29 Oct 2019 22:35:12 +0100 Subject: [PATCH] don't prevent sending telegrams when dest = 0x00 (https://github.com/proddy/EMS-ESP/issues/138) --- src/ems.cpp | 2 ++ src/version.h | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ems.cpp b/src/ems.cpp index 3af8a630d..285c8c6ce 100644 --- a/src/ems.cpp +++ b/src/ems.cpp @@ -589,11 +589,13 @@ void _ems_sendTelegram() { // we don't remove from the queue yet _EMS_TxTelegram EMS_TxTelegram = EMS_TxQueue.first(); + /* // if there is no destination, also delete it from the queue if (EMS_TxTelegram.dest == EMS_ID_NONE) { EMS_TxQueue.shift(); // remove from queue return; } + */ // if we're in raw mode just fire and forget if (EMS_TxTelegram.action == EMS_TX_TELEGRAM_RAW) { diff --git a/src/version.h b/src/version.h index 9a2395692..b1c1b3eff 100644 --- a/src/version.h +++ b/src/version.h @@ -1 +1 @@ -#define APP_VERSION "1.9.4b2" +#define APP_VERSION "1.9.4b3"