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
1 changed files with 2 additions and 2 deletions

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.",
),
]