Remove unused RX boosted gain mode functions and related preprocessor directives across multiple variants

This commit is contained in:
João Brázio
2026-03-05 18:31:00 +00:00
parent f858f2e4bb
commit 9a95e25ef2
164 changed files with 53 additions and 781 deletions

View File

@@ -24,5 +24,11 @@ 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); };
void setRxBoostedGainMode(bool en) override {
((CustomLR1110 *)_radio)->setRxBoostedGainMode(en);
}
bool getRxBoostedGainMode() const override {
return ((CustomLR1110 *)_radio)->getRxBoostedGainMode();
}
};