Skip to content

Commit d6bf810

Browse files
committed
APRStt enhancements including new 5 digit suffix format.
1 parent d653a53 commit d6bf810

19 files changed

+510
-140
lines changed

CHANGES.md

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@
99

1010
- New experimental demodulator. More details later.
1111

12+
- APRStt enhancements including new 5 digit callsign suffix abbreviation and
13+
position ambiguity for latitude and longitude in object reports.
14+
1215
### Bugs Fixed: ###
1316

1417
- "INTERNAL ERROR: dlq_append NULL packet pointer." when using PASSALL.

Makefile.win

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ tocalls-symbols :
127127

128128
# Separate application to decode raw data.
129129

130-
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o regex.a misc.a geotranz.a
130+
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.c regex.a misc.a geotranz.a
131131
$(CC) $(CFLAGS) -DDECAMAIN -o decode_aprs $^
132132

133133

aclients.c

+47-16
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
//
22
// This file is part of Dire Wolf, an amateur radio packet TNC.
33
//
4-
// Copyright (C) 2013 John Langner, WB2OSZ
4+
// Copyright (C) 2013, 2015 John Langner, WB2OSZ
55
//
66
// This program is free software: you can redistribute it and/or modify
77
// it under the terms of the GNU General Public License as published by
@@ -28,19 +28,27 @@
2828
* Description: Establish connection with multiple servers and
2929
* compare results side by side.
3030
*
31-
* Usage: aclients 8000=AGWPE 8002=DireWolf COM1=D710A
31+
* Usage: aclients port1=name1 port2=name2 ...
32+
*
33+
* Example: aclients 8000=AGWPE 192.168.1.64:8002=DireWolf COM1=D710A
3234
*
3335
* This will connect to multiple physical or virtual
3436
* TNCs, read packets from them, and display results.
3537
*
38+
* Each port can have the following forms:
39+
*
40+
* * host-name:tcp-port
41+
* * ip-addr:tcp-port
42+
* * tcp-port
43+
* * serial port name (e.g. COM1, /dev/ttyS0)
44+
*
3645
*---------------------------------------------------------------*/
3746

3847

3948

4049
/*
4150
* Native Windows: Use the Winsock interface.
4251
* Linux: Use the BSD socket interface.
43-
* Cygwin: Can use either one.
4452
*/
4553

4654

@@ -156,14 +164,7 @@ static char * ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t S
156164
* Purpose: Start up multiple client threads listening to different
157165
* TNCs. Print packets. Tally up statistics.
158166
*
159-
* Usage: aclients 8000=AGWPE 8002=DireWolf COM1=D710A
160-
*
161-
* Each command line argument is TCP port number or a
162-
* serial port name. Follow by = and a text description
163-
* of what is connected.
164-
*
165-
* For now, everything is assumed to be on localhost.
166-
* Maybe someday we might recognize host:port=description.
167+
* Usage: Described above.
167168
*
168169
*---------------------------------------------------------------*/
169170

@@ -173,9 +174,17 @@ static char * ia_to_text (int Family, void * pAddr, char * pStringBuf, size_t S
173174

174175
static int num_clients;
175176

176-
static char hostname[MAX_CLIENTS][50];
177-
static char port[MAX_CLIENTS][30];
178-
static char description[MAX_CLIENTS][50];
177+
static char hostname[MAX_CLIENTS][50]; /* DNS host name or IPv4 address. */
178+
/* Some of the code is there for IPv6 but */
179+
/* needs more work. */
180+
/* Defaults to "localhost" if not specified. */
181+
182+
static char port[MAX_CLIENTS][30]; /* If it begins with a digit, it is considered */
183+
/* a TCP port number at the hostname. */
184+
/* Otherwise, we treat it as a serial port name. */
185+
186+
static char description[MAX_CLIENTS][50]; /* Name used in the output. */
187+
179188

180189
#if __WIN32__
181190
static HANDLE client_th[MAX_CLIENTS];
@@ -222,7 +231,9 @@ int main (int argc, char *argv[])
222231
for (j=0; j<num_clients; j++) {
223232
char stemp[100];
224233
char *p;
225-
234+
235+
/* Each command line argument should be of the form "port=description." */
236+
226237
strlcpy (stemp, argv[j+1], sizeof(stemp));
227238
p = strtok (stemp, "=");
228239
if (p == NULL) {
@@ -237,8 +248,24 @@ int main (int argc, char *argv[])
237248
exit (1);
238249
}
239250
strlcpy (description[j], p, sizeof(description[j]));
251+
252+
/* If the port contains ":" split it into hostname (or addr) and port number. */
253+
/* Haven't thought about IPv6 yet. */
254+
255+
strlcpy (stemp, port[j], sizeof(stemp));
256+
257+
char *h;
258+
259+
h = strtok (stemp, ":");
260+
if (h != NULL) {
261+
p = strtok (NULL, ":");
262+
if (p != NULL) {
263+
strlcpy (hostname[j], h, sizeof(hostname[j]));
264+
strlcpy (port[j], p, sizeof(port[j]));
265+
}
266+
}
240267
}
241-
268+
242269
//printf ("_WIN32_WINNT = %04x\n", _WIN32_WINNT);
243270
//for (j=0; j<num_clients; j++) {
244271
// printf ("%s,%s,%s\n", hostname[j], port[j], description[j]);
@@ -253,6 +280,10 @@ int main (int argc, char *argv[])
253280

254281

255282
for (j=0; j<num_clients; j++) {
283+
284+
/* If port begins with digit, consider it to be TCP. */
285+
/* Otherwise, treat as serial port name. */
286+
256287
#if __WIN32__
257288
if (isdigit(port[j][0])) {
258289
client_th[j] = (HANDLE)_beginthreadex (NULL, 0, client_thread_net, (void *)j, 0, NULL);

0 commit comments

Comments
 (0)