From 5fd91a2172c7d4e1b1b3c65b8704f02500e0de87 Mon Sep 17 00:00:00 2001 From: Hemna Date: Wed, 28 Feb 2024 13:23:11 -0500 Subject: [PATCH] Change defaults for beacon and registry The beacon frequency is now every 30 minutes by default. The registry call is now every hour. --- aprsd/conf/common.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/aprsd/conf/common.py b/aprsd/conf/common.py index eed1fd1..dd2794a 100644 --- a/aprsd/conf/common.py +++ b/aprsd/conf/common.py @@ -83,7 +83,7 @@ aprsd_opts = [ ), cfg.IntOpt( "beacon_interval", - default=600, + default=1800, help="The number of seconds between beacon packets.", ), cfg.StrOpt( @@ -255,7 +255,7 @@ registry_opts = [ ), cfg.IntOpt( "frequency_seconds", - default=900, + default=3600, help="The frequency in seconds to send the APRS registry information.", ), ]