Skip to content

Commit 3e9118b

Browse files
committed
1.4 development snapshot C.
IBEACON for IGate statistics. NMEA style waypoints. Clean up compile warnings and header file use for Windows.
1 parent 48aeb43 commit 3e9118b

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+1489
-891
lines changed

CHANGES.md

+16-2
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,27 @@
33

44
----------
55

6-
## Version 1.4 -- Development snapshot B -- April 2016 ##
6+
## Version 1.4 -- Development snapshot C -- June 2016 ##
7+
8+
This is a snapshot at some semi-stable point in the development of the next version. It is not well tested. New features might be incomplete, poorly documented, and subject to change.
9+
710

811
### New Features: ###
912

13+
- New beacon type, IBEACON, for sending IGate statistics.
14+
1015
- 2400 & 4800 bps PSK modems. See ***2400-4800-PSK-for-APRS-Packet-Radio.pdf*** in the doc directory for discussion.
1116

1217

1318
- The top speed of 9600 bps has been increased to 38400. You will need a sound card capable of 96k or 192k samples per second for the higher rates. Radios must also have adequate bandwidth. See ***Going-beyond-9600-baud.pdf*** in the doc directory for more details.
1419

20+
- Better decoder performance for 9600 and higher especially for low audio sample rate to baud ratios.
21+
22+
- Generate waypoint sentences for use by AvMap G5 / G6 or other mapping devices or applications. Formats include
23+
- $GPWPL - NMEA generic with only location and name.
24+
- $PGRMW - Garmin, adds altitude, symbol, and comment to previously named waypoint.
25+
- $PMGNWPL - Magellan, more complete for stationary objects.
26+
- $PKWDWPL - Kenwood with APRS style symbol but missing comment.
1527

1628
### Bugs Fixed: ###
1729

@@ -31,9 +43,11 @@ received frames are not being printed. After a while this message will appear:
3143
another application is not reading the frames from the other side.*
3244

3345

46+
- The Windows version 1.3 would crash when starting to transmit on Windows XP. There have also been some other reports of erratic behavior on Windows. The crashing problem was fixed in in the 1.3.1 patch release. Linux version was not affected.
47+
3448
----------
3549

36-
## Version 1.3 -- Beta Test -- March 2016 ##
50+
## Version 1.3 -- May 2016 ##
3751

3852
### New Features: ###
3953

Makefile.linux

+23-8
Original file line numberDiff line numberDiff line change
@@ -229,13 +229,13 @@ z := $(notdir ${CURDIR})
229229

230230

231231
direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o demod_9600.o hdlc_rec.o \
232-
hdlc_rec2.o multi_modem.o redecode.o rdq.o rrbb.o dlq.o \
232+
hdlc_rec2.o multi_modem.o rdq.o rrbb.o dlq.o \
233233
fcs_calc.o ax25_pad.o \
234234
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
235235
gen_tone.o audio.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
236236
ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
237237
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o waypoint.o serial_port.o log.o telemetry.o \
238-
dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o \
238+
dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o mheard.o \
239239
misc.a geotranz.a
240240
$(CC) -o $@ $^ $(LDFLAGS)
241241
ifneq ($(enable_gpsd),)
@@ -333,7 +333,7 @@ gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c
333333
atest : atest.c demod.o demod_afsk.o demod_psk.o demod_9600.o \
334334
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \
335335
fcs_calc.o ax25_pad.o decode_aprs.o dwgpsnmea.o \
336-
dwgps.o dwgpsd.o serial_port.o telemetry.o latlong.o symbols.o tt_text.o textcolor.o \
336+
dwgps.o dwgpsd.o serial_port.o telemetry.o dtime_now.o latlong.o symbols.o tt_text.o textcolor.o \
337337
misc.a
338338
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
339339

@@ -606,14 +606,14 @@ check-modem300 : gen_packets atest
606606

607607
check-modem9600 : gen_packets atest
608608
./gen_packets -B9600 -n 100 -o /tmp/test96.wav
609-
./atest -B9600 -F0 -L57 -G61 /tmp/test96.wav
610-
./atest -B9600 -F1 -L64 -G67 /tmp/test96.wav
609+
./atest -B9600 -F0 -L50 -G54 /tmp/test96.wav
610+
./atest -B9600 -F1 -L55 -G59 /tmp/test96.wav
611611
rm /tmp/test96.wav
612612

613613
check-modem19200 : gen_packets atest
614614
./gen_packets -r 96000 -B19200 -n 100 -o /tmp/test19.wav
615-
./atest -B19200 -F0 -L62 -G64 /tmp/test19.wav
616-
./atest -B19200 -F1 -L69 -G71 /tmp/test19.wav
615+
./atest -B19200 -F0 -L55 -G59 /tmp/test19.wav
616+
./atest -B19200 -F1 -L60 -G64 /tmp/test19.wav
617617
rm /tmp/test19.wav
618618

619619
check-modem2400 : gen_packets atest
@@ -743,11 +743,26 @@ tune.h :
743743

744744

745745
testagc : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.o hdlc_rec2.o multi_modem.o rrbb.o \
746-
fcs_calc.o ax25_pad.o decode_aprs.o telemetry.o latlong.o symbols.o tune.h textcolor.o misc.a
746+
fcs_calc.o ax25_pad.o decode_aprs.o telemetry.o dtime_now.o latlong.o symbols.o tune.h textcolor.o misc.a
747747
$(CC) $(CFLAGS) -o atest $^ $(LDFLAGS)
748748
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
749749

750750

751+
testagc96 : atest.c fsk_fast_filter.h tune.h demod.c demod_afsk.c demod_psk.c demod_9600.c \
752+
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o \
753+
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
754+
dwgpsnmea.o dwgps.o dwgpsd.o serial_port.o latlong.o \
755+
symbols.o tt_text.o textcolor.o telemetry.o dtime_now.o \
756+
misc.a
757+
rm -f atest96
758+
$(CC) $(CFLAGS) -o atest96 $^ $(LDFLAGS)
759+
./atest96 -B 9600 ../walkabout9600c.wav | grep "packets decoded in" >atest.out
760+
#./atest96 -B 9600 noisy96.wav | grep "packets decoded in" >atest.out
761+
#./atest96 -B 9600 19990303_0225_9600_8bis_22kHz.wav | grep "packets decoded in" >atest.out
762+
#./atest96 -B 9600 19990303_0225_9600_16bit_22kHz.wav | grep "packets decoded in" >atest.out
763+
#./atest96 -B 9600 -P + z8-22k.wav| grep "packets decoded in" >atest.out
764+
#./atest96 -B 9600 test9600.wav | grep "packets decoded in" >atest.out
765+
echo " " > tune.h
751766

752767

753768

Makefile.macosx

+4-4
Original file line numberDiff line numberDiff line change
@@ -227,9 +227,9 @@ direwolf : direwolf.o aprs_tt.o audio_portaudio.o audio_stats.o ax25_pad.o beaco
227227
encode_aprs.o encode_aprs.o fcs_calc.o fcs_calc.o gen_tone.o \
228228
geotranz.a hdlc_rec.o hdlc_rec2.o hdlc_send.o igate.o kiss_frame.o \
229229
kiss.o kissnet.o latlong.o latlong.o log.o morse.o multi_modem.o \
230-
waypoint.o serial_port.o pfilter.o ptt.o rdq.o recv.o redecode.o rrbb.o server.o \
230+
waypoint.o serial_port.o pfilter.o ptt.o rdq.o recv.o rrbb.o server.o \
231231
symbols.o telemetry.o textcolor.o tq.o tt_text.o tt_user.o xmit.o \
232-
dwgps.o dwgpsnmea.o
232+
dwgps.o dwgpsnmea.o mheard.o
233233
$(CC) $(CFLAGS) -o $@ $^ -lpthread $(LDLIBS) -lm
234234

235235

@@ -453,15 +453,15 @@ tune.h :
453453

454454

455455
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
456-
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
456+
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c dtime_now.o latlong.c symbols.c tune.h textcolor.c
457457
$(CC) $(CFLAGS) -o atest $^ -lm
458458
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
459459

460460

461461
# Unit test for demodulators
462462

463463
atest : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
464-
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c
464+
fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c dtest_now.o latlong.c symbols.c textcolor.c tt_text.c
465465
$(CC) $(CFLAGS) -o $@ $^ -lm
466466
#atest : atest.c fsk_fast_filter.h demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
467467
# fcs_calc.c ax25_pad.c decode_aprs.c dwgpsnmea.o dwgps.o serial_port.o telemetry.c latlong.c symbols.c textcolor.c tt_text.c

Makefile.win

+39-82
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,24 @@ all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_pa
2121

2222
# People say we need -mthreads option for threads to work properly.
2323
# They also say it creates a dependency on mingwm10.dll but I'm not seeing that.
24+
# Maybe that is for pthreads. We are using the Windows threads.
25+
26+
# -Ofast was added in gcc 4.6 which was the MinGW version back in 2012.
2427

2528
CC := gcc
2629
CFLAGS := -Wall -Ofast -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC
30+
#CFLAGS := -Wall -march=pentium3 -msse -Iregex -Iutm -Igeotranz -mthreads -DUSE_REGEX_STATIC
2731
AR := ar
2832

2933
CFLAGS += -g
3034

35+
# For version 1.4, we upgrade from 4.6.2 to 4.9.3.
36+
37+
# gcc 4.8 adds these. Try them just for fun.
38+
# No, it needs libasan which is not on Windows.
39+
#CFLAGS += -fsanitize=address -fno-omit-frame-pointer
40+
41+
3142
# TODO: Development in progress. Don't try using yet.
3243
#CFLAGS += -DNEW14
3344

@@ -78,13 +89,13 @@ demod_psk.o : fsk_demod_state.h
7889
# later ax25_link.o
7990

8091
direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o demod_9600.o hdlc_rec.o \
81-
hdlc_rec2.o multi_modem.o redecode.o rdq.o rrbb.o dlq.o \
92+
hdlc_rec2.o multi_modem.o rdq.o rrbb.o dlq.o \
8293
fcs_calc.o ax25_pad.o ax25_pad2.o \
8394
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
8495
gen_tone.o morse.o audio_win.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o \
8596
ptt.o beacon.o dwgps.o encode_aprs.o latlong.o textcolor.o \
8697
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o waypoint.o serial_port.o log.o telemetry.o \
87-
dwgps.o dwgpsnmea.o dtime_now.o \
98+
dwgps.o dwgpsnmea.o dtime_now.o mheard.o \
8899
dw-icon.o regex.a misc.a geotranz.a
89100
$(CC) $(CFLAGS) -o $@ $^ -lwinmm -lws2_32
90101

@@ -269,16 +280,16 @@ check-modem300 : gen_packets atest
269280
check-modem9600 : gen_packets atest
270281
gen_packets -B9600 -n 100 -o test96.wav
271282
sleep 1
272-
atest -B9600 -F0 -L57 -G62 test96.wav
273-
atest -B9600 -F1 -L65 -G67 test96.wav
283+
atest -B9600 -F0 -L50 -G54 test96.wav
284+
atest -B9600 -F1 -L55 -G59 test96.wav
274285
sleep 1
275286
rm test96.wav
276287

277288
check-modem19200 : gen_packets atest
278289
gen_packets -r 96000 -B19200 -n 100 -o test19.wav
279290
sleep 1
280-
atest -B19200 -F0 -L63 -G64 test19.wav
281-
atest -B19200 -F1 -L69 -G70 test19.wav
291+
atest -B19200 -F0 -L55 -G59 test19.wav
292+
atest -B19200 -F1 -L60 -G64 test19.wav
282293
sleep 1
283294
rm test19.wav
284295

@@ -288,15 +299,15 @@ check-modem2400 : gen_packets atest
288299
atest -B2400 -F0 -L70 -G78 test24.wav
289300
atest -B2400 -F1 -L80 -G87 test24.wav
290301
sleep 1
291-
#rm test24.wav
302+
rm test24.wav
292303

293304
check-modem4800 : gen_packets atest
294305
gen_packets -B4800 -n 100 -o test48.wav
295306
sleep 1
296307
atest -B4800 -F0 -L70 -G74 test48.wav
297308
atest -B4800 -F1 -L79 -G84 test48.wav
298309
sleep 1
299-
#rm test48.wav
310+
rm test48.wav
300311

301312

302313
# Unit test for demodulators
@@ -305,7 +316,7 @@ atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_psk.c demod_9600.c
305316
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o \
306317
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
307318
dwgpsnmea.o dwgps.o serial_port.o latlong.c \
308-
symbols.c tt_text.c textcolor.c telemetry.c \
319+
symbols.c tt_text.c textcolor.c telemetry.c dtime_now.o \
309320
misc.a regex.a
310321
echo " " > tune.h
311322
$(CC) $(CFLAGS) -o $@ $^
@@ -314,7 +325,7 @@ atest : atest.c fsk_fast_filter.h demod.c demod_afsk.c demod_psk.c demod_9600.c
314325
#atest za100.wav
315326

316327
atest9 : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c \
317-
rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c latlong.c symbols.c textcolor.c telemetry.c misc.a regex.a \
328+
rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c latlong.c symbols.c textcolor.c telemetry.c dtime_now.o misc.a regex.a \
318329
fsk_fast_filter.h
319330
echo " " > tune.h
320331
$(CC) $(CFLAGS) -o $@ $^
@@ -415,7 +426,7 @@ demod_psk.o : tune.h
415426
testagc : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.o fsk_demod_agc.h \
416427
hdlc_rec.o hdlc_rec2.o multi_modem.o \
417428
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o latlong.o symbols.o textcolor.o telemetry.o \
418-
dwgpsnmea.o dwgps.o serial_port.o tt_text.o regex.a misc.a
429+
dwgpsnmea.o dwgps.o serial_port.o tt_text.o dtime_now.o regex.a misc.a
419430
rm -f atest.exe
420431
$(CC) $(CFLAGS) -o atest $^
421432
./atest -P GGG- -F 0 ../02_Track_2.wav | grep "packets decoded in" >atest.out
@@ -426,7 +437,7 @@ noisy3.wav : gen_packets
426437
./gen_packets -B 300 -n 100 -o noisy3.wav
427438

428439
testagc3 : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c \
429-
rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c latlong.c symbols.c textcolor.c telemetry.c regex.a misc.a \
440+
rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c latlong.c symbols.c textcolor.c telemetry.c dtime_now.o regex.a misc.a \
430441
tune.h
431442
rm -f atest3.exe
432443
$(CC) $(CFLAGS) -o atest3 $^
@@ -437,20 +448,27 @@ testagc3 : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.
437448
noisy96.wav : gen_packets
438449
./gen_packets -B 9600 -n 100 -o noisy96.wav
439450

440-
testagc96 : atest.c demod.c dsp.c demod_afsk.c demod_psk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c \
441-
rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c latlong.c symbols.c textcolor.c telemetry.c regex.a misc.a \
442-
tune.h
443-
rm -f atest9.exe
444-
$(CC) $(CFLAGS) -o atest9 $^
445-
./atest9 -B 9600 ../walkabout9600.wav | grep "packets decoded in" >atest.out
446-
#./atest9 -B 9600 noisy96.wav | grep "packets decoded in" >atest.out
451+
testagc96 : atest.c fsk_fast_filter.h tune.h demod.c demod_afsk.c demod_psk.c demod_9600.c \
452+
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o \
453+
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
454+
dwgpsnmea.o dwgps.o serial_port.o latlong.o \
455+
symbols.o tt_text.o textcolor.o telemetry.o dtime_now.o \
456+
misc.a regex.a
457+
rm -f atest96.exe
458+
$(CC) $(CFLAGS) -o atest96 $^
459+
./atest96 -B 9600 ../walkabout9600c.wav | grep "packets decoded in" >atest.out
460+
#./atest96 -B 9600 noisy96.wav | grep "packets decoded in" >atest.out
461+
#./atest96 -B 9600 19990303_0225_9600_8bis_22kHz.wav | grep "packets decoded in" >atest.out
462+
#./atest96 -B 9600 19990303_0225_9600_16bit_22kHz.wav | grep "packets decoded in" >atest.out
463+
#./atest96 -B 9600 -P + z8-22k.wav| grep "packets decoded in" >atest.out
464+
#./atest96 -B 9600 test9600.wav | grep "packets decoded in" >atest.out
447465
echo " " > tune.h
448466

449467
testagc24 : atest.c fsk_fast_filter.h tune.h demod.c demod_afsk.c demod_psk.c demod_9600.c \
450468
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o \
451469
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
452470
dwgpsnmea.o dwgps.o serial_port.o latlong.o \
453-
symbols.o tt_text.o textcolor.o telemetry.o \
471+
symbols.o tt_text.o textcolor.o telemetry.o dtime_now.o \
454472
misc.a regex.a
455473
rm -f atest24.exe
456474
sleep 1
@@ -462,7 +480,7 @@ testagc48 : atest.c fsk_fast_filter.h tune.h demod.c demod_afsk.c demod_psk.c de
462480
dsp.o hdlc_rec.o hdlc_rec2.o multi_modem.o \
463481
rrbb.o fcs_calc.o ax25_pad.o decode_aprs.o \
464482
dwgpsnmea.o dwgps.o serial_port.o latlong.o \
465-
symbols.o tt_text.o textcolor.o telemetry.o \
483+
symbols.o tt_text.o textcolor.o telemetry.o dtime_now.o \
466484
misc.a regex.a
467485
rm -f atest48.exe
468486
sleep 1
@@ -570,67 +588,6 @@ dist-win : direwolf.exe decode_aprs.exe text2tt.exe tt2text.exe ll2utm.exe utm2l
570588
dwespeak.bat \
571589
telemetry-toolkit/*
572590

573-
.PHONY: dist-src
574-
dist-src : README.md CHANGES.md \
575-
doc/User-Guide.pdf \
576-
doc/Raspberry-Pi-APRS.pdf \
577-
doc/Raspberry-Pi-APRS-Tracker.pdf \
578-
doc/APRStt-Implementation-Notes.pdf \
579-
doc/APRS-Telemetry-Toolkit.pdf \
580-
dw-start.sh dwespeak.bat dwespeak.sh \
581-
tocalls.txt symbols-new.txt symbolsX.txt direwolf.spec
582-
rm -f fsk_fast_filter.h
583-
echo " " > tune.h
584-
rm -f ../$z-src.zip
585-
dos2unix generic.conf
586-
dos2unix Makefile
587-
dos2unix Makefile.linux
588-
dos2unix Makefile.macosx
589-
dos2unix telemetry-toolkit/telem-balloon.conf
590-
dos2unix telemetry-toolkit/telem-balloon.pl
591-
dos2unix telemetry-toolkit/telem-bits.pl
592-
dos2unix telemetry-toolkit/telem-data.pl
593-
dos2unix telemetry-toolkit/telem-data91.pl
594-
dos2unix telemetry-toolkit/telem-eqns.pl
595-
dos2unix telemetry-toolkit/telem-m0xer-3.txt
596-
dos2unix telemetry-toolkit/telem-parm.pl
597-
dos2unix telemetry-toolkit/telem-unit.pl
598-
dos2unix telemetry-toolkit/telem-volts.py
599-
dos2unix telemetry-toolkit/telem-volts.conf
600-
(cd .. ; zip $z-src.zip \
601-
$z/README.md \
602-
$z/CHANGES.md \
603-
$z/LICENSE* \
604-
$z/doc/User-Guide.pdf \
605-
$z/doc/Raspberry-Pi-APRS.pdf \
606-
$z/doc/Raspberry-Pi-APRS-Tracker.pdf \
607-
$z/doc/APRStt-Implementation-Notes.pdf \
608-
$z/doc/APRS-Telemetry-Toolkit.pdf \
609-
$z/Makefile.win $z/Makefile.linux $z/Makefile.macosx $z/Makefile \
610-
$z/*.c $z/*.h \
611-
$z/regex/* $z/misc/* $z/geotranz/* \
612-
$z/man1/* \
613-
$z/generic.conf \
614-
$z/tocalls.txt $z/symbols-new.txt $z/symbolsX.txt \
615-
$z/dw-icon.png $z/dw-icon.rc $z/dw-icon.ico \
616-
$z/dw-start.sh $z/direwolf.spec \
617-
$z/dwespeak.bat $z/dwespeak.sh \
618-
$z/telemetry-toolkit/* )
619-
unix2dos Makefile
620-
unix2dos Makefile.linux
621-
unix2dos Makefile.macosx
622-
unix2dos telemetry-toolkit/telem-balloon.conf
623-
unix2dos telemetry-toolkit/telem-balloon.pl
624-
dos2unix telemetry-toolkit/telem-bits.pl
625-
unix2dos telemetry-toolkit/telem-data.pl
626-
unix2dos telemetry-toolkit/telem-data91.pl
627-
unix2dos telemetry-toolkit/telem-eqns.pl
628-
unix2dos telemetry-toolkit/telem-m0xer-3.txt
629-
unix2dos telemetry-toolkit/telem-parm.pl
630-
unix2dos telemetry-toolkit/telem-unit.pl
631-
unix2dos telemetry-toolkit/telem-volts.py
632-
unix2dos telemetry-toolkit/telem-volts.conf
633-
634591

635592
# Reminders if pdf files are not up to date.
636593

README.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](http://wa8lmf
1515

1616
- Ideal for building a Raspberry Pi digipeater & IGate.
1717

18-
- 300, 1200, and 9600 baud operation.
18+
- Data rates: 300 AFSK, 1200 AFSK, 2400 QPSK, 4800 8PSK, and 9600/19200/38400 K9NG/G3RUH.
1919

2020
- Interface with applications by
2121
- [AGW](http://uz7.ho.ua/includes/agwpeapi.htm) network protocol
@@ -24,6 +24,8 @@ Decodes more than 1000 error-free frames from [WA8LMF TNC Test CD](http://wa8lmf
2424

2525
- Decoding of received information for troubleshooting.
2626

27+
- Conversion from APRS to waypoint sentences in popular formats: $GPWPL, $PGRMW, $PMGNWPL, $PKWDWPL.
28+
2729
- Logging and conversion to GPX file format.
2830

2931
- Beaconing for yourself or other nearby entities.

0 commit comments

Comments
 (0)