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
No known key found for this signature in database
GPG key ID: 56A1490716A324DD
164 changed files with 53 additions and 781 deletions

View file

@ -22,4 +22,11 @@ public:
}
void doResetAGC() override { sx126xResetAGC((SX126x *)_radio); }
void setRxBoostedGainMode(bool en) override {
((CustomLLCC68 *)_radio)->setRxBoostedGainMode(en);
}
bool getRxBoostedGainMode() const override {
return ((CustomLLCC68 *)_radio)->getRxBoostedGainMode();
}
};