mirror of
https://github.com/emsesp/EMS-ESP32.git
synced 2025-12-08 00:39:50 +03:00
don't prevent sending telegrams when dest = 0x00 (https://github.com/proddy/EMS-ESP/issues/138)
This commit is contained in:
@@ -589,11 +589,13 @@ void _ems_sendTelegram() {
|
|||||||
// we don't remove from the queue yet
|
// we don't remove from the queue yet
|
||||||
_EMS_TxTelegram EMS_TxTelegram = EMS_TxQueue.first();
|
_EMS_TxTelegram EMS_TxTelegram = EMS_TxQueue.first();
|
||||||
|
|
||||||
|
/*
|
||||||
// if there is no destination, also delete it from the queue
|
// if there is no destination, also delete it from the queue
|
||||||
if (EMS_TxTelegram.dest == EMS_ID_NONE) {
|
if (EMS_TxTelegram.dest == EMS_ID_NONE) {
|
||||||
EMS_TxQueue.shift(); // remove from queue
|
EMS_TxQueue.shift(); // remove from queue
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
// if we're in raw mode just fire and forget
|
// if we're in raw mode just fire and forget
|
||||||
if (EMS_TxTelegram.action == EMS_TX_TELEGRAM_RAW) {
|
if (EMS_TxTelegram.action == EMS_TX_TELEGRAM_RAW) {
|
||||||
|
|||||||
@@ -1 +1 @@
|
|||||||
#define APP_VERSION "1.9.4b2"
|
#define APP_VERSION "1.9.4b3"
|
||||||
|
|||||||
Reference in New Issue
Block a user