From 66b1b1cb242c8a35a6030a9ab576393b0ca697c7 Mon Sep 17 00:00:00 2001 From: MichaelDvP Date: Wed, 27 May 2026 10:49:29 +0200 Subject: [PATCH] revert settings for txmode off and 0x0d without ack --- interface/src/app/settings/ApplicationSettings.tsx | 1 - src/core/telegram.cpp | 3 ++- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/interface/src/app/settings/ApplicationSettings.tsx b/interface/src/app/settings/ApplicationSettings.tsx index 875247885..8e8e90ab7 100644 --- a/interface/src/app/settings/ApplicationSettings.tsx +++ b/interface/src/app/settings/ApplicationSettings.tsx @@ -673,7 +673,6 @@ const ApplicationSettings = () => { sx={{ width: '15ch' }} select > - {LL.OFF()} EMS EMS+ HT3 diff --git a/src/core/telegram.cpp b/src/core/telegram.cpp index cdf3564a9..c107271c1 100644 --- a/src/core/telegram.cpp +++ b/src/core/telegram.cpp @@ -276,7 +276,8 @@ void TxService::start() { // sends a 1 byte poll which is our own deviceID void TxService::send_poll() const { // LOG_DEBUG("Ack %02X",ems_bus_id() ^ ems_mask()); - if (tx_mode() != EMS_TXMODE_OFF && ems_bus_id() != 0x0D) { + // if (tx_mode() != EMS_TXMODE_OFF && ems_bus_id() != 0x0D) { // use 0x0D for tests without poll-Ack + if (tx_mode() != EMS_TXMODE_OFF) { EMSuart::send_poll(ems_bus_id() ^ ems_mask()); } }