From 7f7b03e442823b005fb5dd9968aa9055d9542e05 Mon Sep 17 00:00:00 2001 From: Florent Date: Mon, 14 Apr 2025 12:23:28 +0200 Subject: [PATCH] permit access to rx_boosted_mode at runtime for LR1110 (for dpm tests on that setting) --- src/helpers/CustomLR1110Wrapper.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/helpers/CustomLR1110Wrapper.h b/src/helpers/CustomLR1110Wrapper.h index fb3a4b91..3a96d3c2 100644 --- a/src/helpers/CustomLR1110Wrapper.h +++ b/src/helpers/CustomLR1110Wrapper.h @@ -27,4 +27,5 @@ public: float getLastRSSI() const override { return ((CustomLR1110 *)_radio)->getRSSI(); } float getLastSNR() const override { return ((CustomLR1110 *)_radio)->getSNR(); } + int16_t setRxBoostedGainMode(bool en) { return ((CustomLR1110 *)_radio)->setRxBoostedGainMode(en); }; };