Skip to content

Commit dd27f99

Browse files
committed
Development snapshot 1.3 dev F.
Changes to be committed: modified: .gitattributes modified: CHANGES.md modified: Makefile modified: Makefile.linux new file: Makefile.macosx modified: Makefile.win modified: aclients.c modified: aprs_tt.c modified: aprs_tt.h modified: atest.c modified: audio.c modified: audio.h new file: audio_portaudio.c new file: audio_stats.c new file: audio_stats.h modified: audio_win.c modified: ax25_pad.c modified: ax25_pad.h modified: beacon.c modified: config.c modified: config.h modified: decode_aprs.c modified: decode_aprs.h modified: demod.c modified: digipeater.c modified: direwolf.c modified: direwolf.h modified: dlq.c modified: doc/README.md modified: doc/Raspberry-Pi-APRS.pdf modified: doc/User-Guide.pdf new file: doc/WA8LMF-TNC-Test-CD-Results.pdf modified: dtime_now.c modified: dtmf.c modified: dw-start.sh modified: encode_aprs.c modified: encode_aprs.h modified: gen_packets.c modified: gen_tone.c modified: gen_tone.h new file: generic.conf modified: grm_sym.h modified: hdlc_rec.c modified: hdlc_rec.h modified: igate.c modified: kiss.c modified: kiss_frame.c modified: kissnet.c modified: latlong.c modified: man1/direwolf.1 modified: mgn_icon.h modified: misc/README-dire-wolf.txt new file: misc/strlcat.c new file: misc/strlcpy.c modified: morse.c new file: morse.h modified: nmea.c modified: pfilter.c modified: ptt.c new file: serial_port.c new file: serial_port.h modified: server.c modified: symbols.c modified: symbols.h new file: telemetry-toolkit/telem-balloon.conf new file: telemetry-toolkit/telem-balloon.pl new file: telemetry-toolkit/telem-bits.pl new file: telemetry-toolkit/telem-data.pl new file: telemetry-toolkit/telem-data91.pl new file: telemetry-toolkit/telem-eqns.pl new file: telemetry-toolkit/telem-m0xer-3.txt new file: telemetry-toolkit/telem-parm.pl new file: telemetry-toolkit/telem-unit.pl new file: telemetry-toolkit/telem-volts.conf new file: telemetry-toolkit/telem-volts.py modified: telemetry.c modified: textcolor.c modified: tq.c modified: tt_text.c modified: tt_text.h modified: tt_user.c modified: tt_user.h modified: utm2ll.c modified: version.h new file: walk96.c modified: xmit.c
1 parent 558315f commit dd27f99

Some content is hidden

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

86 files changed

+8178
-1780
lines changed

.gitattributes

+4-1
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,14 @@
2222
*.cpp text
2323
*.h text
2424
*.pl text
25-
Makefile* text
25+
*.py text
26+
*.sh text
2627
*.txt text
2728
*.desktop text
2829
*.conf text
2930
*.rc text
3031

3132
*.ico binary
3233
*.png binary
34+
35+
Makefile* text

CHANGES.md

+35
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,41 @@
33

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

6+
## Version 1.3 -- Development snapshot F -- September 2015 ##
7+
8+
### New Feature: ###
9+
10+
- Command line option "-a n" to print audio device statistics each n seconds. Previously this was always each 100 seconds on Linux and not available on Windows.
11+
12+
### Bug Fixed: ###
13+
14+
- Crashed when receiving packet with comment of a few hundred characters.
15+
16+
----------
17+
18+
## Version 1.3 -- Development snapshot E -- August 2015 ##
19+
20+
### Bug Fixed: ###
21+
22+
- Crashed when receiving packet with unexpected form of GPS NMEA sentence.
23+
24+
----------
25+
26+
## Version 1.3 -- Development snapshot D -- July 2015 ##
27+
28+
### New Features: ###
29+
30+
- Enhancements to APRStt gateway including Morse code and speech responses to to APRStt tone sequences.
31+
32+
- Preliminary support for Mac OS X. NEEDS MORE TESTING!
33+
34+
- A list of all symbols available can be obtained with the -S
35+
command line option.
36+
37+
- APRS Telemetry Toolkit (incomplete).
38+
39+
----------
40+
641
## Version 1.2 -- June 2015 ##
742

843
### New Features ###

Makefile

+9-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
# Select proper Makefile for operating system.
22
# The Windows version is built with the help of Cygwin.
33

4+
# In my case, I see CYGWIN_NT-6.1-WOW so we don't check for
5+
# equal to some value. Your mileage my vary.
6+
47
win := $(shell uname | grep CYGWIN)
8+
dar := $(shell uname | grep Darwin)
9+
510
ifneq ($(win),)
6-
include Makefile.win
11+
include Makefile.win
12+
else ifeq ($(dar),Darwin)
13+
include Makefile.macosx
714
else
8-
include Makefile.linux
15+
include Makefile.linux
916
endif

Makefile.linux

+67-57
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Makefile for Linux version of Dire Wolf.
33
#
44

5-
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc direwolf.desktop
5+
all : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc direwolf.desktop direwolf.conf
66
@echo " "
77
@echo "Next step - install with:"
88
@echo " "
@@ -216,10 +216,10 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_9600.o hd
216216
hdlc_rec2.o multi_modem.o redecode.o rdq.o rrbb.o dlq.o \
217217
fcs_calc.o ax25_pad.o \
218218
decode_aprs.o symbols.o server.o kiss.o kissnet.o kiss_frame.o hdlc_send.o fcs_calc.o \
219-
gen_tone.o audio.o digipeater.o pfilter.o dedupe.o tq.o xmit.o \
219+
gen_tone.o audio.o audio_stats.o digipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
220220
ptt.o beacon.o dwgps.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
221-
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o nmea.o log.o telemetry.o dtime_now.o \
222-
geotranz.a
221+
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o nmea.o serial_port.o log.o telemetry.o dtime_now.o \
222+
misc.a geotranz.a
223223
$(CC) $(CFLAGS) -o $@ $^ -lpthread -lrt $(LDLIBS) -lm
224224

225225

@@ -263,6 +263,25 @@ utm.o : geotranz/utm.c
263263
$(CC) $(CFLAGS) -c -o $@ $^
264264

265265

266+
# Provide our own copy of strlcpy and strlcat because they are not included with Linux.
267+
# We don't need the others in that same directory.
268+
269+
misc.a : strlcpy.o strlcat.o
270+
ar -cr $@ $^
271+
272+
strlcpy.o : misc/strlcpy.c
273+
$(CC) $(CFLAGS) -I. -c -o $@ $^
274+
275+
strlcat.o : misc/strlcat.c
276+
$(CC) $(CFLAGS) -I. -c -o $@ $^
277+
278+
279+
280+
# Generate apprpriate sample configuration file for this platform.
281+
282+
direwolf.conf : generic.conf
283+
egrep '^C|^L' generic.conf | cut -c2-999 > direwolf.conf
284+
266285

267286
# Where should we install it?
268287

@@ -282,7 +301,7 @@ INSTALLDIR := /usr/local
282301
# It was hardcoded with lxterminal, /home/pi, and so on.
283302
# In version 1.2, try to customize this to match other situations better.
284303

285-
# TODO1.2: Test this better.
304+
# TODO: Test this better.
286305

287306

288307
direwolf.desktop :
@@ -310,7 +329,7 @@ endif
310329
# TODO: Review file locations.
311330

312331
install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx gen_packets \
313-
tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png direwolf.desktop
332+
tocalls.txt symbols-new.txt symbolsX.txt dw-icon.png direwolf.desktop
314333
install direwolf $(INSTALLDIR)/bin
315334
install decode_aprs $(INSTALLDIR)/bin
316335
install text2tt $(INSTALLDIR)/bin
@@ -323,20 +342,21 @@ install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
323342
install atest $(INSTALLDIR)/bin
324343
install ttcalc $(INSTALLDIR)/bin
325344
install dwespeak.sh $(INSTALLDIR)/bin
345+
install telemetry-toolkit/*.p[ly] $(INSTALLDIR)/bin
326346
install -D --mode=644 tocalls.txt /usr/share/direwolf/tocalls.txt
327347
install -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
328348
install -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
329349
install -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
330350
install -D --mode=644 direwolf.desktop /usr/share/applications/direwolf.desktop
331-
install -D --mode=644 CHANGES.txt $(INSTALLDIR)/share/doc/direwolf/CHANGES.txt
351+
install -D --mode=644 README.md $(INSTALLDIR)/share/doc/direwolf/README.md
352+
install -D --mode=644 CHANGES.md $(INSTALLDIR)/share/doc/direwolf/CHANGES.md
332353
install -D --mode=644 LICENSE-dire-wolf.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-dire-wolf.txt
333354
install -D --mode=644 LICENSE-other.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-other.txt
334-
install -D --mode=644 User-Guide.pdf $(INSTALLDIR)/share/doc/direwolf/User-Guide.pdf
335-
install -D --mode=644 Raspberry-Pi-APRS.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS.pdf
336-
install -D --mode=644 Raspberry-Pi-APRS-Tracker.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS-Tracker.pdf
337-
install -D --mode=644 APRStt-Implementation-Notes.pdf $(INSTALLDIR)/share/doc/direwolf/APRStt-Implementation-Notes.pdf
338-
install -D --mode=644 A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf
339-
install -D --mode=644 A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf $(INSTALLDIR)/share/doc/direwolf/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf
355+
install -D --mode=644 doc/User-Guide.pdf $(INSTALLDIR)/share/doc/direwolf/User-Guide.pdf
356+
install -D --mode=644 doc/Raspberry-Pi-APRS.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS.pdf
357+
install -D --mode=644 doc/Raspberry-Pi-APRS-Tracker.pdf $(INSTALLDIR)/share/doc/direwolf/Raspberry-Pi-APRS-Tracker.pdf
358+
install -D --mode=644 doc/APRStt-Implementation-Notes.pdf $(INSTALLDIR)/share/doc/direwolf/APRStt-Implementation-Notes.pdf
359+
install -D --mode=644 doc/APRS-Telemetry-Toolkit.pdf $(INSTALLDIR)/share/doc/direwolf/APRS-Telemetry-Toolkit.pdf
340360
install -D --mode=644 man1/aclients.1 $(INSTALLDIR)/man/man1/aclients.1
341361
install -D --mode=644 man1/atest.1 $(INSTALLDIR)/man/man1/atest.1
342362
install -D --mode=644 man1/decode_aprs.1 $(INSTALLDIR)/man/man1/decode_aprs.1
@@ -348,15 +368,15 @@ install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
348368
install -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
349369
install -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1
350370
@echo " "
351-
@echo "If this is your first install, not an upgrade, type this"
352-
@echo "to put a copy of the sample configuration file in your home directory:"
371+
@echo "If this is your first install, not an upgrade, type this to put a copy"
372+
@echo "of the sample configuration file (direwolf.conf) in your home directory:"
353373
@echo " "
354374
@echo " make install-conf"
355375
@echo " "
356376

357377

358378
# TODO: Should we put the sample direwolf.conf file somewhere like
359-
# /usr/share/doc/direwolf/examples or /etc/ax25 and add that to the
379+
# /usr/share/doc/direwolf/examples and add that to the
360380
# end of the search path list?
361381
# That would make it easy to see user customizations compared to the
362382
# latest sample.
@@ -371,6 +391,8 @@ install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
371391
.PHONY: install-conf
372392
install-conf : direwolf.conf
373393
cp direwolf.conf ~
394+
cp telemetry-toolkit/telem-m0xer-3.txt ~
395+
cp telemetry-toolkit/telem-*.conf ~
374396
ifneq ($(wildcard $(HOME)/Desktop),)
375397
@echo " "
376398
@echo "This will add a desktop icon on some systems:"
@@ -389,7 +411,7 @@ install-rpi : dw-start.sh
389411

390412
# Separate application to decode raw data.
391413

392-
decode_aprs : decode_aprs.c symbols.c ax25_pad.c textcolor.c fcs_calc.c latlong.c log.c telemetry.o
414+
decode_aprs : decode_aprs.c symbols.c ax25_pad.c textcolor.c fcs_calc.c latlong.c log.c telemetry.o tt_text.o misc.a
393415
$(CC) $(CFLAGS) -o decode_aprs -DTEST $^ -lm
394416

395417

@@ -405,30 +427,30 @@ tt2text : tt_text.c
405427

406428
# Convert between Latitude/Longitude and UTM coordinates.
407429

408-
ll2utm : ll2utm.c geotranz.a
430+
ll2utm : ll2utm.c geotranz.a textcolor.o misc.a
409431
$(CC) $(CFLAGS) -o $@ $^ -lm
410432

411-
utm2ll : utm2ll.c geotranz.a
433+
utm2ll : utm2ll.c geotranz.a textcolor.o misc.a
412434
$(CC) $(CFLAGS) -o $@ $^ -lm
413435

414436

415437
# Convert from log file to GPX.
416438

417-
log2gpx : log2gpx.c
439+
log2gpx : log2gpx.c textcolor.o misc.a
418440
$(CC) $(CFLAGS) -o $@ $^ -lm
419441

420442

421443
# Test application to generate sound.
422444

423-
gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c textcolor.c dsp.c
445+
gen_packets : gen_packets.c ax25_pad.c hdlc_send.c fcs_calc.c gen_tone.c morse.c textcolor.c dsp.c misc.a
424446
$(CC) $(CFLAGS) -o $@ $^ $(LDLIBS) -lm
425447

426448
demod.o : tune.h
427449
demod_afsk.o : tune.h
428450
demod_9600.o : tune.h
429451

430452
testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
431-
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c
453+
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tune.h textcolor.c misc.a
432454
$(CC) $(CFLAGS) -o atest $^ -lm
433455
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
434456

@@ -437,55 +459,57 @@ testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o
437459

438460

439461
atest : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o multi_modem.o rrbb.o \
440-
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c textcolor.c
462+
fcs_calc.c ax25_pad.c decode_aprs.c telemetry.c latlong.c symbols.c tt_text.c textcolor.c \
463+
misc.a
441464
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
442465

443466
# Unit test for inner digipeater algorithm
444467

445468

446-
dtest : digipeater.c pfilter.c ax25_pad.c dedupe.c fcs_calc.c tq.c textcolor.c
469+
dtest : digipeater.c pfilter.c ax25_pad.c dedupe.c fcs_calc.c tq.c textcolor.c misc.a
447470
$(CC) $(CFLAGS) -DTEST -o $@ $^
448471
./dtest
449472

450473

451474
# Unit test for APRStt.
452475

453-
ttest : aprs_tt.c tt_text.c latlong.c misc.a geotranz.a
476+
ttest : aprs_tt.c tt_text.c latlong.c textcolor.o misc.a geotranz.a misc.a
454477
$(CC) $(CFLAGS) -DTT_MAIN -o $@ $^
455478

456479

457480
# Unit test for IGate
458481

459482

460-
itest : igate.c textcolor.c ax25_pad.c fcs_calc.c
483+
itest : igate.c textcolor.c ax25_pad.c fcs_calc.c textcolor.o misc.a
461484
$(CC) $(CFLAGS) -DITEST -o $@ $^
462485
./itest
463486

464487

465488
# Unit test for UDP reception with AFSK demodulator
466489

467-
udptest : udp_test.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c rrbb.c fcs_calc.c ax25_pad.c decode_aprs.c symbols.c textcolor.c
490+
udptest : udp_test.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.c multi_modem.c rrbb.c
491+
fcs_calc.c ax25_pad.c decode_aprs.c symbols.c textcolor.c misc.a
468492
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
469493
./udptest
470494

471495

472496
# Unit test for telemetry decoding.
473497

474498

475-
etest : telemetry.c ax25_pad.c fcs_calc.c textcolor.c misc.a regex.a
499+
etest : telemetry.c ax25_pad.c fcs_calc.c textcolor.o misc.a regex.a
476500
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
477501
./etest
478502

479503

480504
# Multiple AGWPE network or serial port clients to test TNCs side by side.
481505

482-
aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.c
506+
aclients : aclients.c ax25_pad.c fcs_calc.c textcolor.o misc.a
483507
$(CC) $(CFLAGS) -g -o $@ $^
484508

485509

486510
# Touch Tone to Speech sample application.
487511

488-
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o
512+
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o misc.a
489513
$(CC) $(CFLAGS) -g -o $@ $^
490514

491515

@@ -503,49 +527,35 @@ clean :
503527
# Package it up for distribution.
504528

505529
.PHONY: dist-src
506-
dist-src : CHANGES.txt User-Guide.pdf Raspberry-Pi-APRS.pdf \
507-
Raspberry-Pi-APRS-Tracker.pdf APRStt-Implementation-Notes.pdf \
508-
A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf \
530+
dist-src : README.md CHANGES.md
531+
doc/User-Guide.pdf doc/Raspberry-Pi-APRS.pdf \
532+
doc/Raspberry-Pi-APRS-Tracker.pdf doc/APRStt-Implementation-Notes.pdf \
509533
dw-start.sh dwespeak.bat dwespeak.sh \
510534
tocalls.txt symbols-new.txt symbolsX.txt direwolf.spec
511535
rm -f fsk_fast_filter.h
512536
echo " " > tune.h
513537
rm -f ../$z-src.zip
514-
egrep '^C|^L' direwolf.txt | cut -c2-999 > direwolf.conf
515538
(cd .. ; zip $z-src.zip \
516-
$z/CHANGES.txt \
539+
$z/README.md \
540+
$z/CHANGES.md \
517541
$z/LICENSE* \
518-
$z/User-Guide.pdf \
519-
$z/Raspberry-Pi-APRS.pdf \
520-
$z/Raspberry-Pi-APRS-Tracker.pdf \
521-
$z/APRStt-Implementation-Notes.pdf \
522-
$z/A-Better-APRS-Packet-Demodulator-Part-1-1200-baud.pdf \
523-
$z/A-Better-APRS-Packet-Demodulator-Part-2-9600-baud.pdf \
542+
$z/doc/User-Guide.pdf \
543+
$z/doc/Raspberry-Pi-APRS.pdf \
544+
$z/doc/Raspberry-Pi-APRS-Tracker.pdf \
545+
$z/doc/APRStt-Implementation-Notes.pdf \
546+
$z/doc/APRS-Telemetry-Toolkit.pdf \
524547
$z/Makefile* \
525548
$z/*.c $z/*.h \
526549
$z/regex/* $z/misc/* $z/geotranz/* \
527550
$z/man1/* \
528-
$z/direwolf.conf $z/direwolf.txt \
551+
$z/generic.conf \
529552
$z/tocalls.txt $z/symbols-new.txt $z/symbolsX.txt \
530553
$z/dw-icon.png $z/dw-icon.rc $z/dw-icon.ico \
531554
$z/dw-start.sh $z/direwolf.spec \
532-
$z/dwespeak.bat $z/dwespeak.sh )
555+
$z/dwespeak.bat $z/dwespeak.sh \
556+
$z/telemetry-toolkit/* )
533557

534558

535-
536-
#User-Guide.pdf : User-Guide.docx
537-
# echo "***** User-Guide.pdf is out of date *****"
538-
539-
#Raspberry-Pi-APRS.pdf : Raspberry-Pi-APRS.docx
540-
# echo "***** Raspberry-Pi-APRS.pdf is out of date *****"
541-
542-
#Raspberry-Pi-APRS-Tracker.pdf : Raspberry-Pi-APRS-Tracker.docx
543-
# echo "***** Raspberry-Pi-APRS-Tracker.pdf is out of date *****"
544-
545-
#A-Better-APRS-Packet-Demodulator.pdf : A-Better-APRS-Packet-Demodulator.docx
546-
# echo "***** A-Better-APRS-Packet-Demodulator.pdf is out of date *****"
547-
548-
549559
#
550560
# The locations below appear to be the most recent.
551561
# The copy at http://www.aprs.org/tocalls.txt is out of date.

0 commit comments

Comments
 (0)