1
0
mirror of https://github.com/craigerl/aprsd.git synced 2026-06-09 17:44:40 -04:00

Change defaults for beacon and registry

The beacon frequency is now every 30 minutes by default.
The registry call is now every hour.
This commit is contained in:
2024-02-28 13:23:11 -05:00
parent a4630c15be
commit 5fd91a2172
+2 -2
View File
@@ -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.",
),
]