2
2
# Makefile for Linux version of Dire Wolf.
3
3
#
4
4
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
6
6
@echo " "
7
7
@echo "Next step - install with:"
8
8
@echo " "
@@ -216,10 +216,10 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_9600.o hd
216
216
hdlc_rec2.o multi_modem.o redecode.o rdq.o rrbb.o dlq.o \
217
217
fcs_calc.o ax25_pad.o \
218
218
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 \
220
220
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
223
223
$(CC) $(CFLAGS) -o $@ $^ -lpthread -lrt $(LDLIBS) -lm
224
224
225
225
@@ -263,6 +263,25 @@ utm.o : geotranz/utm.c
263
263
$(CC) $(CFLAGS) -c -o $@ $^
264
264
265
265
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
+
266
285
267
286
# Where should we install it?
268
287
@@ -282,7 +301,7 @@ INSTALLDIR := /usr/local
282
301
# It was hardcoded with lxterminal, /home/pi, and so on.
283
302
# In version 1.2, try to customize this to match other situations better.
284
303
285
- # TODO1.2 : Test this better.
304
+ # TODO : Test this better.
286
305
287
306
288
307
direwolf.desktop :
@@ -310,7 +329,7 @@ endif
310
329
# TODO: Review file locations.
311
330
312
331
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
314
333
install direwolf $(INSTALLDIR)/bin
315
334
install decode_aprs $(INSTALLDIR)/bin
316
335
install text2tt $(INSTALLDIR)/bin
@@ -323,20 +342,21 @@ install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
323
342
install atest $(INSTALLDIR)/bin
324
343
install ttcalc $(INSTALLDIR)/bin
325
344
install dwespeak.sh $(INSTALLDIR)/bin
345
+ install telemetry-toolkit/*.p[ly] $(INSTALLDIR)/bin
326
346
install -D --mode=644 tocalls.txt /usr/share/direwolf/tocalls.txt
327
347
install -D --mode=644 symbols-new.txt /usr/share/direwolf/symbols-new.txt
328
348
install -D --mode=644 symbolsX.txt /usr/share/direwolf/symbolsX.txt
329
349
install -D --mode=644 dw-icon.png /usr/share/direwolf/dw-icon.png
330
350
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
332
353
install -D --mode=644 LICENSE-dire-wolf.txt $(INSTALLDIR)/share/doc/direwolf/LICENSE-dire-wolf.txt
333
354
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
340
360
install -D --mode=644 man1/aclients.1 $(INSTALLDIR)/man/man1/aclients.1
341
361
install -D --mode=644 man1/atest.1 $(INSTALLDIR)/man/man1/atest.1
342
362
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
348
368
install -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
349
369
install -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1
350
370
@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:"
353
373
@echo " "
354
374
@echo " make install-conf"
355
375
@echo " "
356
376
357
377
358
378
# 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
360
380
# end of the search path list?
361
381
# That would make it easy to see user customizations compared to the
362
382
# latest sample.
@@ -371,6 +391,8 @@ install : direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients log2gpx ge
371
391
.PHONY: install-conf
372
392
install-conf : direwolf.conf
373
393
cp direwolf.conf ~
394
+ cp telemetry-toolkit/telem-m0xer-3.txt ~
395
+ cp telemetry-toolkit/telem-*.conf ~
374
396
ifneq ($(wildcard $(HOME)/Desktop),)
375
397
@echo " "
376
398
@echo "This will add a desktop icon on some systems:"
@@ -389,7 +411,7 @@ install-rpi : dw-start.sh
389
411
390
412
# Separate application to decode raw data.
391
413
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
393
415
$(CC) $(CFLAGS) -o decode_aprs -DTEST $^ -lm
394
416
395
417
@@ -405,30 +427,30 @@ tt2text : tt_text.c
405
427
406
428
# Convert between Latitude/Longitude and UTM coordinates.
407
429
408
- ll2utm : ll2utm.c geotranz.a
430
+ ll2utm : ll2utm.c geotranz.a textcolor.o misc.a
409
431
$(CC) $(CFLAGS) -o $@ $^ -lm
410
432
411
- utm2ll : utm2ll.c geotranz.a
433
+ utm2ll : utm2ll.c geotranz.a textcolor.o misc.a
412
434
$(CC) $(CFLAGS) -o $@ $^ -lm
413
435
414
436
415
437
# Convert from log file to GPX.
416
438
417
- log2gpx : log2gpx.c
439
+ log2gpx : log2gpx.c textcolor.o misc.a
418
440
$(CC) $(CFLAGS) -o $@ $^ -lm
419
441
420
442
421
443
# Test application to generate sound.
422
444
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
424
446
$(CC) $(CFLAGS) -o $@ $^ $(LDLIBS) -lm
425
447
426
448
demod.o : tune.h
427
449
demod_afsk.o : tune.h
428
450
demod_9600.o : tune.h
429
451
430
452
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
432
454
$(CC) $(CFLAGS) -o atest $^ -lm
433
455
./atest 02_Track_2.wav | grep "packets decoded in" > atest.out
434
456
@@ -437,55 +459,57 @@ testagc : atest.c demod.c dsp.c demod_afsk.c demod_9600.c hdlc_rec.c hdlc_rec2.o
437
459
438
460
439
461
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
441
464
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
442
465
443
466
# Unit test for inner digipeater algorithm
444
467
445
468
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
447
470
$(CC) $(CFLAGS) -DTEST -o $@ $^
448
471
./dtest
449
472
450
473
451
474
# Unit test for APRStt.
452
475
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
454
477
$(CC) $(CFLAGS) -DTT_MAIN -o $@ $^
455
478
456
479
457
480
# Unit test for IGate
458
481
459
482
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
461
484
$(CC) $(CFLAGS) -DITEST -o $@ $^
462
485
./itest
463
486
464
487
465
488
# Unit test for UDP reception with AFSK demodulator
466
489
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
468
492
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
469
493
./udptest
470
494
471
495
472
496
# Unit test for telemetry decoding.
473
497
474
498
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
476
500
$(CC) $(CFLAGS) -o $@ $^ -lm -lrt
477
501
./etest
478
502
479
503
480
504
# Multiple AGWPE network or serial port clients to test TNCs side by side.
481
505
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
483
507
$(CC) $(CFLAGS) -g -o $@ $^
484
508
485
509
486
510
# Touch Tone to Speech sample application.
487
511
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
489
513
$(CC) $(CFLAGS) -g -o $@ $^
490
514
491
515
@@ -503,49 +527,35 @@ clean :
503
527
# Package it up for distribution.
504
528
505
529
.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 \
509
533
dw-start.sh dwespeak.bat dwespeak.sh \
510
534
tocalls.txt symbols-new.txt symbolsX.txt direwolf.spec
511
535
rm -f fsk_fast_filter.h
512
536
echo " " > tune.h
513
537
rm -f ../$z-src.zip
514
- egrep '^C|^L' direwolf.txt | cut -c2-999 > direwolf.conf
515
538
(cd .. ; zip $z-src.zip \
516
- $z/CHANGES.txt \
539
+ $z/README.md \
540
+ $z/CHANGES.md \
517
541
$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 \
524
547
$z/Makefile* \
525
548
$z/*.c $z/*.h \
526
549
$z/regex/* $z/misc/* $z/geotranz/* \
527
550
$z/man1/* \
528
- $z/direwolf .conf $z/direwolf.txt \
551
+ $z/generic .conf \
529
552
$z/tocalls.txt $z/symbols-new.txt $z/symbolsX.txt \
530
553
$z/dw-icon.png $z/dw-icon.rc $z/dw-icon.ico \
531
554
$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/* )
533
557
534
558
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
-
549
559
#
550
560
# The locations below appear to be the most recent.
551
561
# The copy at http://www.aprs.org/tocalls.txt is out of date.
0 commit comments