Edits to support SondeSeeker UDP

This commit is contained in:
smithse 2025-01-17 19:48:12 +08:00 committed by GitHub
parent 749a4123b6
commit eff992b07c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 12 additions and 2 deletions

View File

@ -71,7 +71,7 @@ marker=1
# APRS settings
#-------------------------------#
call=N0CALL
passcode=12345
passcode=-1
#-------------------------------#
# Sonde specific settings: bandwidth
# valid values: 3100, 3900, 5200, 6300, 7800, 10400, 12500,
@ -147,5 +147,11 @@ sondehub.fiinterval=60
sondehub.fimaxdist=150
sondehub.fimaxage=6
#-------------------------------#
# SondeSeeker settings
#-------------------------------#
ss.active=1
ss.host=224.0.0.0
ss.port=62655
#-------------------------------#
# EOF
#-------------------------------#

View File

@ -301,7 +301,7 @@ void Sonde::defaultConfig() {
}
//
config.noisefloor = -125;
strcpy(config.call,"NOCALL");
strcpy(config.call,"N0CALL");
config.passcode = -1;
strcpy(config.mdnsname, "rdzsonde");
config.maxsonde=15;
@ -343,6 +343,10 @@ void Sonde::defaultConfig() {
strcpy(config.mqtt.password, "/0");
strcpy(config.mqtt.prefix, "rdz_sonde_server/");
config.mqtt.report_interval = 60000;
config.ss.active = 0;
config.ss.port = 1883;
strcpy(config.ss.host, "224.0.0.0");
}
extern struct st_configitems config_list[];