Skip to content

Commit be7ee82

Browse files
committed
decode_aprs can now process KISS or AX.25 frames as sequences of hexadecimal numbers.
1 parent 3ce981c commit be7ee82

10 files changed

+276
-46
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ This is a snapshot of ongoing development towards version of 1.5. Some features
1414

1515
- New document ***Bluetooth-KISS-TNC.pdf*** explaining how to use KISS over Bluetooth.
1616

17+
- decode_aprs utility can now accept KISS frames and AX.25 frames as series of two digit hexadecimal numbers.
18+
1719
### Bugs Fixed: ###
1820

1921
- Little spelling errors in messages ????

Makefile.linux

+18-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22
# Makefile for Linux version of Dire Wolf.
33
#
44

5+
6+
7+
58
APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc
69

710
all : $(APPS) direwolf.desktop direwolf.conf
@@ -259,6 +262,16 @@ endif
259262
CFLAGS += -DUSE_ALSA
260263
LDFLAGS += -lasound
261264

265+
ifeq ($(wildcard /usr/include/pthread.h),)
266+
$(error /usr/include/pthread.h does not exist. Install it with "sudo apt-get install libc6-dev" or "sudo yum install libc6-dev" )
267+
endif
268+
269+
ifneq ($(USE_ALSA),)
270+
ifeq ($(wildcard /usr/include/alsa/asoundlib.h),)
271+
$(error /usr/include/alsa/asoundlib.h does not exist. Install it with "sudo apt-get install libasound2-dev" or "sudo yum install libasound2-dev" )
272+
endif
273+
endif
274+
262275

263276
# Enable GPS if header file is present.
264277
# Finding libgps.so* is more difficult because it
@@ -355,7 +368,9 @@ tocalls-symbols :
355368

356369
# Separate application to decode raw data.
357370

358-
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a
371+
# First two use .c rather than .o because they depend on DECAMAIN definition.
372+
373+
decode_aprs : decode_aprs.c kiss_frame.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o misc.a
359374
$(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ $(LDFLAGS)
360375

361376

@@ -638,7 +653,8 @@ install-conf : direwolf.conf
638653
cp -n telemetry-toolkit/telem-*.conf ~
639654
ifneq ($(wildcard $(HOME)/Desktop),)
640655
@echo " "
641-
@echo "This will add a desktop icon on some systems:"
656+
@echo "This will add a desktop icon on some systems."
657+
@echo "This is known to work on Raspberry Pi but might not be compatible with other desktops."
642658
@echo " "
643659
@echo " make install-rpi"
644660
@echo " "

Makefile.macosx

+3-1
Original file line numberDiff line numberDiff line change
@@ -430,7 +430,9 @@ install-conf : direwolf.conf
430430

431431
# Separate application to decode raw data.
432432

433-
decode_aprs : decode_aprs.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o
433+
# First two use .c rather than .o because they depend on DECAMAIN definition.
434+
435+
decode_aprs : decode_aprs.c kiss_frame.c dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o symbols.o ax25_pad.o textcolor.o fcs_calc.o latlong.o log.o telemetry.o tt_text.o
434436
$(CC) $(CFLAGS) -DDECAMAIN -o $@ $^ -lm
435437

436438
# Convert between text and touch tone representation.

Makefile.win

+3-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,9 @@ tocalls-symbols :
159159

160160
# Separate application to decode raw data.
161161

162-
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
162+
# First two use .c rather than .o because they depend on DECAMAIN definition.
163+
164+
decode_aprs : decode_aprs.c kiss_frame.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
163165
$(CC) $(CFLAGS) -DDECAMAIN -o decode_aprs $^
164166

165167

ax25_pad.c

+35-11
Original file line numberDiff line numberDiff line change
@@ -760,12 +760,18 @@ int ax25_parse_addr (int position, char *in_addr, int strict, char *out_addr, in
760760
maxlen = strict ? 6 : (AX25_MAX_ADDR_LEN-1);
761761
p = in_addr;
762762
i = 0;
763-
for (p = in_addr; isalnum(*p); p++) {
763+
for (p = in_addr; *p != '\0' && *p != '-'; p++) {
764764
if (i >= maxlen) {
765765
text_color_set(DW_COLOR_ERROR);
766766
dw_printf ("%sAddress is too long. \"%s\" has more than %d characters.\n", position_name[position], in_addr, maxlen);
767767
return 0;
768768
}
769+
if ( ! isalnum(*p)) {
770+
text_color_set(DW_COLOR_ERROR);
771+
dw_printf ("%sAddress, \"%s\" contains character other than letter or digit in character position %d.\n", position_name[position], in_addr, (int)(long)(p-in_addr)+1);
772+
return 0;
773+
}
774+
769775
out_addr[i++] = *p;
770776
out_addr[i] = '\0';
771777
if (strict && islower(*p)) {
@@ -1257,13 +1263,22 @@ void ax25_get_addr_with_ssid (packet_t this_p, int n, char *station)
12571263
return;
12581264
}
12591265

1260-
memset (station, 0, 7);
1266+
// At one time this would stop at the first space, on the assumption we would have only trailing spaces.
1267+
// Then there was a forum discussion where someone encountered the address " WIDE2" with a leading space.
1268+
// In that case, we would have returned a zero length string here.
1269+
// Now we return exactly what is in the address field and trim trailing spaces.
1270+
// This will provide better information for troubleshooting.
1271+
12611272
for (i=0; i<6; i++) {
1262-
unsigned char ch;
1273+
station[i] = (this_p->frame_data[n*7+i] >> 1) & 0x7f;
1274+
}
1275+
station[6] = '\0';
12631276

1264-
ch = (this_p->frame_data[n*7+i] >> 1) & 0x7f;
1265-
if (ch <= ' ') break;
1266-
station[i] = ch;
1277+
for (i=5; i>=0; i--) {
1278+
if (station[i] == ' ')
1279+
station[i] = '\0';
1280+
else
1281+
break;
12671282
}
12681283

12691284
ssid = ax25_get_ssid (this_p, n);
@@ -1322,13 +1337,22 @@ void ax25_get_addr_no_ssid (packet_t this_p, int n, char *station)
13221337
return;
13231338
}
13241339

1325-
memset (station, 0, 7);
1340+
// At one time this would stop at the first space, on the assumption we would have only trailing spaces.
1341+
// Then there was a forum discussion where someone encountered the address " WIDE2" with a leading space.
1342+
// In that case, we would have returned a zero length string here.
1343+
// Now we return exactly what is in the address field and trim trailing spaces.
1344+
// This will provide better information for troubleshooting.
1345+
13261346
for (i=0; i<6; i++) {
1327-
unsigned char ch;
1347+
station[i] = (this_p->frame_data[n*7+i] >> 1) & 0x7f;
1348+
}
1349+
station[6] = '\0';
13281350

1329-
ch = (this_p->frame_data[n*7+i] >> 1) & 0x7f;
1330-
if (ch <= ' ') break;
1331-
station[i] = ch;
1351+
for (i=5; i>=0; i--) {
1352+
if (station[i] == ' ')
1353+
station[i] = '\0';
1354+
else
1355+
break;
13321356
}
13331357

13341358
} /* end ax25_get_addr_no_ssid */

0 commit comments

Comments
 (0)