diff options
author | Jason Reiss <jreiss@multitech.com> | 2023-02-07 15:07:07 -0600 |
---|---|---|
committer | Jason Reiss <jreiss@multitech.com> | 2023-02-07 15:07:07 -0600 |
commit | f74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20 (patch) | |
tree | e39102ebb2d832d9c003ad5263edea373ea04027 | |
parent | 79a392cb7d31c6b08f70511cc3921d30bbb7bec2 (diff) | |
download | packet_forwarder_mtac_full-f74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20.tar.gz packet_forwarder_mtac_full-f74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20.tar.bz2 packet_forwarder_mtac_full-f74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20.zip |
Disable restart interval by default, no longer needed with FPGA v35
-rw-r--r-- | lora_pkt_fwd/src/lora_pkt_fwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
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 */ |