Skip to content

Commit a98096f

Browse files
committed
fix default config
1 parent 963f44d commit a98096f

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

RX_FSK/data/config.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -107,8 +107,8 @@ axudp.ratelimit=1
107107
# connect to some aprs server
108108
#-------------------------------#
109109
tcp.active=0
110-
tcp.host=radiosondy.info:14590
111-
#tcp.host2=wettersonde.net:14590
110+
tcp.host=radiosondy.info:14580
111+
#tcp.host2=wettersonde.net:14580
112112
# Currently this is fixed...
113113
# tcp.symbol=/O
114114
tcp.highrate=20

RX_FSK/src/Sonde.cpp

+3-2
Original file line numberDiff line numberDiff line change
@@ -328,8 +328,9 @@ void Sonde::defaultConfig() {
328328
strcpy(config.udpfeed.host, "192.168.42.20:9002");
329329
config.udpfeed.ratelimit= 1;
330330
config.tcpfeed.active = 0;
331-
strcpy(config.tcpfeed.host, "wettersonde.net:14580");
332-
strcpy(config.tcpfeed.host2, "radiosondy.info:14580");
331+
strcpy(config.tcpfeed.host, "radiosondy.info:14580");
332+
// default config consistent with default config.txt: set only first aprs host
333+
// strcpy(config.tcpfeed.host2, "wettersonde.net:14580");
333334
strcpy(config.tcpfeed.symbol, "/O");
334335
config.tcpfeed.highrate = 10;
335336
config.kisstnc.active = 0;

0 commit comments

Comments
 (0)