Implement remote lna toggle cli cmd

This commit is contained in:
João Brázio
2026-02-10 14:56:20 +00:00
parent 3f33455b4d
commit 71136671bd
171 changed files with 925 additions and 27 deletions

View File

@@ -52,6 +52,8 @@ struct NodePrefs { // persisted to file
uint32_t discovery_mod_timestamp;
float adc_multiplier;
char owner_info[120];
// Power settings
uint8_t sx126x_rx_boosted_gain;
};
class CommonCLICallbacks {
@@ -87,6 +89,10 @@ public:
virtual void restartBridge() {
// no op by default
};
virtual void setRxBoostedGain(bool enable) {
// no op by default
};
};
class CommonCLI {