1
0
mirror of https://github.com/craigerl/aprsd.git synced 2025-09-04 22:27:50 -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:
Hemna 2024-02-28 13:23:11 -05:00
parent a4630c15be
commit 5fd91a2172

View File

@ -83,7 +83,7 @@ aprsd_opts = [
), ),
cfg.IntOpt( cfg.IntOpt(
"beacon_interval", "beacon_interval",
default=600, default=1800,
help="The number of seconds between beacon packets.", help="The number of seconds between beacon packets.",
), ),
cfg.StrOpt( cfg.StrOpt(
@ -255,7 +255,7 @@ registry_opts = [
), ),
cfg.IntOpt( cfg.IntOpt(
"frequency_seconds", "frequency_seconds",
default=900, default=3600,
help="The frequency in seconds to send the APRS registry information.", help="The frequency in seconds to send the APRS registry information.",
), ),
] ]