From 8328f5be6f53f4bafc5c5a0f308d1b08e55aea7b Mon Sep 17 00:00:00 2001 From: "jacob.eva" Date: Mon, 16 Jun 2025 18:21:18 +0100 Subject: [PATCH] Fix T-Echo reporting 0 dBm. --- Utilities.h | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Utilities.h b/Utilities.h index 8e0f81d..3c0f06e 100644 --- a/Utilities.h +++ b/Utilities.h @@ -1248,6 +1248,9 @@ void setTXPower(RadioInterface* radio, int txp) { } } + if (model == MODEL_16) radio->setTxPower(txp, PA_OUTPUT_PA_BOOST_PIN); + if (model == MODEL_17) radio->setTxPower(txp, PA_OUTPUT_PA_BOOST_PIN); + if (model == MODEL_A1) radio->setTxPower(txp, PA_OUTPUT_PA_BOOST_PIN); if (model == MODEL_A2) radio->setTxPower(txp, PA_OUTPUT_PA_BOOST_PIN); if (model == MODEL_A3) radio->setTxPower(txp, PA_OUTPUT_RFO_PIN);