From f74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20 Mon Sep 17 00:00:00 2001 From: Jason Reiss Date: Tue, 7 Feb 2023 15:07:07 -0600 Subject: Disable restart interval by default, no longer needed with FPGA v35 --- lora_pkt_fwd/src/lora_pkt_fwd.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lora_pkt_fwd/src/lora_pkt_fwd.c b/lora_pkt_fwd/src/lora_pkt_fwd.c index 47662e6..35da9f0 100644 --- a/lora_pkt_fwd/src/lora_pkt_fwd.c +++ b/lora_pkt_fwd/src/lora_pkt_fwd.c @@ -179,7 +179,7 @@ static uint32_t duty_cycle_period = 3600; // seconds in one hour static double duty_cycle_ratio = 0.10; // 10% static uint32_t duty_cycle_time_max = 3600 * 0.10 * 1000u; // max time-on-air in window -static uint32_t restart_interval_minutes = 10 * 60; +static uint32_t restart_interval_minutes = 0; static int max_tx_power = -99; // limit tx power sent from a network server /* statistics collection configuration variables */ -- cgit v1.2.3