4
4
5
5
6
6
7
- APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil
7
+ APPS := direwolf decode_aprs text2tt tt2text ll2utm utm2ll aclients atest log2gpx gen_packets ttcalc kissutil cm108
8
8
9
9
all : $(APPS) direwolf.desktop direwolf.conf
10
10
@echo " "
@@ -292,6 +292,21 @@ LDFLAGS += -lhamlib
292
292
endif
293
293
294
294
295
+ # If, for some reason, can obtain the libudev-dev package, or
296
+ # don't want to install it, comment out the next 3 lines.
297
+
298
+ ifeq ($(wildcard /usr/include/libudev.h),)
299
+ $(error /usr/include/libudev.h does not exist. Install it with "sudo apt-get install libudev-dev" or "sudo yum install libudev-dev" )
300
+ endif
301
+
302
+
303
+ # Enable cm108 PTT support if libudev header file is present.
304
+
305
+ enable_cm108 := $(wildcard /usr/include/libudev.h)
306
+ ifneq ($(enable_cm108),)
307
+ CFLAGS += -DUSE_CM108
308
+ LDFLAGS += -ludev
309
+ endif
295
310
296
311
297
312
# Name of current directory.
@@ -312,7 +327,7 @@ direwolf : direwolf.o config.o recv.o demod.o dsp.o demod_afsk.o demod_psk.o dem
312
327
gen_tone.o audio.o audio_stats.o digipeater.o cdigipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
313
328
ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
314
329
dtmf.o aprs_tt.o tt_user.o tt_text.o igate.o waypoint.o serial_port.o log.o telemetry.o \
315
- dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o mheard.o ax25_link.o \
330
+ dwgps.o dwgpsnmea.o dwgpsd.o dtime_now.o mheard.o ax25_link.o cm108.o \
316
331
misc.a geotranz.a
317
332
$(CC) -o $@ $^ $(LDFLAGS)
318
333
@echo " "
@@ -325,6 +340,11 @@ ifneq ($(enable_hamlib),)
325
340
@echo "\t>\tThis includes support for hamlib."
326
341
else
327
342
@echo "\t>\tThis does NOT include support for hamlib."
343
+ endif
344
+ ifneq ($(enable_cm108),)
345
+ @echo "\t>\tThis includes support for CM108/CM119 PTT."
346
+ else
347
+ @echo "\t>\tThis does NOT include support for CM108/CM119 PTT."
328
348
endif
329
349
@echo " "
330
350
@@ -435,6 +455,12 @@ kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port
435
455
$(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^ $(LDFLAGS)
436
456
437
457
458
+ # List USB audio adapters than can use GPIO for PTT.
459
+
460
+ cm108 : cm108.c textcolor.o misc.a
461
+ $(CC) $(CFLAGS) -g -DCM108_MAIN -o $@ $^ $(LDFLAGS)
462
+
463
+
438
464
# Touch Tone to Speech sample application.
439
465
440
466
ttcalc : ttcalc.o ax25_pad.o fcs_calc.o textcolor.o misc.a
@@ -569,6 +595,7 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
569
595
$(INSTALL) atest $(INSTALLDIR)/bin
570
596
$(INSTALL) ttcalc $(INSTALLDIR)/bin
571
597
$(INSTALL) kissutil $(INSTALLDIR)/bin
598
+ $(INSTALL) cm108 $(INSTALLDIR)/bin
572
599
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
573
600
#
574
601
# Telemetry Toolkit executables. Other .conf and .txt files will go into doc directory.
@@ -643,6 +670,11 @@ install : $(APPS) direwolf.conf tocalls.txt symbols-new.txt symbolsX.txt dw-icon
643
670
$(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/man/man1/text2tt.1
644
671
$(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
645
672
$(INSTALL) -D --mode=644 man1/utm2ll.1 $(INSTALLDIR)/man/man1/utm2ll.1
673
+ #
674
+ # Set group and mode of HID devices corresponding to C-Media USB Audio adapters.
675
+ # This will allow us to use the CM108/CM119 GPIO pins for PTT.
676
+ #
677
+ $(INSTALL) -D --mode=644 99-direwolf-cmedia.rules /etc/udev/rules.d/99-direwolf-cmedia.rules
646
678
#
647
679
@echo " "
648
680
@echo "If this is your first install, not an upgrade, type this to put a copy"
0 commit comments