Implement remote lna toggle cli cmd

此提交包含在:
João Brázio
2026-02-10 15:02:23 +00:00
父節點 3f33455b4d
當前提交 71136671bd
共有 171 個檔案被更改,包括 925 行新增27 行删除
+6
查看文件
@@ -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 {