Edits to support SondeSeeker UDP
This commit is contained in:
parent
749a4123b6
commit
eff992b07c
|
|
@ -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
|
||||
#-------------------------------#
|
||||
|
|
|
|||
|
|
@ -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[];
|
||||
|
|
|
|||
Loading…
Reference in New Issue