summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Reiss <jreiss@multitech.com>2023-02-07 15:07:07 -0600
committerJason Reiss <jreiss@multitech.com>2023-02-07 15:07:07 -0600
commitf74dd4ea03c964db1fa8cf1a06f1bf5a4e630a20 (patch)
treee39102ebb2d832d9c003ad5263edea373ea04027
parent79a392cb7d31c6b08f70511cc3921d30bbb7bec2 (diff)
downloadpacket_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.c2
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 */