Browse Source

Merge pull request #202 from fdlamotte/rx_boost_toggle_lr1110

permit access to rx_boosted_mode at runtime for LR1110
pull/205/head
ripplebiz 1 year ago
committed by GitHub
parent
commit
69d1d920bb
No known key found for this signature in database GPG Key ID: B5690EEEBB952194
  1. 1
      src/helpers/CustomLR1110Wrapper.h

1
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); };
};

Loading…
Cancel
Save