mirror of
https://github.com/liquidraver/ZephCore.git
synced 2026-09-02 12:53:45 +00:00
duty cycle off, sx erratas
This commit is contained in:
@@ -474,9 +474,11 @@ int main(void)
|
||||
}
|
||||
}
|
||||
|
||||
/* Apply RX boost and duty cycle settings from prefs */
|
||||
/* Apply RX boost from prefs. Duty cycle is disabled — CAD-based
|
||||
* duty cycling misses weak packets that continuous RX would catch.
|
||||
* Arduino reference uses continuous RX for all boards. */
|
||||
lora_radio.setRxBoost(prefs->rx_boost != 0);
|
||||
lora_radio.enableRxDutyCycle(prefs->rx_duty_cycle != 0);
|
||||
lora_radio.enableRxDutyCycle(false);
|
||||
|
||||
/* Feed initial UI state from loaded prefs */
|
||||
ui_set_node_name(prefs->node_name);
|
||||
|
||||
Reference in New Issue
Block a user