Skip to content

Commit 7efe0ab

Browse files
committed
PTT using GPIO of CM108/CM119.
1 parent 33a34f3 commit 7efe0ab

10 files changed

+987
-45
lines changed

99-direwolf-cmedia.rules

+30
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Normally, all of /dev/hidraw* are accessible only by root.
2+
#
3+
# $ ls -l /dev/hidraw*
4+
# crw------- 1 root root 247, 0 Sep 24 09:40 /dev/hidraw0
5+
#
6+
# An ordinary user, trying to acccess it will be denied.
7+
#
8+
# Unnecessarily running applications as root is generally a bad idea because it makes it too easy
9+
# to accidentally trash your system. We need to relax the restrictions so ordinary users can use these devices.
10+
#
11+
# If all went well with installation, the /etc/udev/rules.d directory should contain a file called
12+
# 99-direwolf-cmedia.rules containing:
13+
#
14+
15+
SUBSYSTEM=="hidraw", ATTRS{idVendor}=="0d8c", GROUP="audio", MODE="0660"
16+
17+
#
18+
# I used the "audio" group, mimicking the permissions on the sound side of the device.
19+
#
20+
# $ ls -l /dev/snd/pcm*
21+
# crw-rw----+ 1 root audio 116, 16 Sep 24 09:40 /dev/snd/pcmC0D0p
22+
# crw-rw----+ 1 root audio 116, 17 Sep 24 09:40 /dev/snd/pcmC0D1p
23+
#
24+
# You should see something similar to this where someone in the "audio" group has read-write access.
25+
#
26+
# $ ls -l /dev/hidraw*
27+
# crw-rw---- 1 root audio 247, 0 Oct 6 19:24 /dev/hidraw0
28+
#
29+
# Read the User Guide and run the "cm108" application for more information.
30+
#

CHANGES.md

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

1212
- KISS "Set Hardware" command to report transmit queue length.
1313

14+
- PTT using GPIO pin of CM108/CM119 (e.g. DMK URI, RB-USB RIM)
15+
1416

1517
### Bugs Fixed: ###
1618

Makefile.linux

+34-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55

66

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
88

99
all : $(APPS) direwolf.desktop direwolf.conf
1010
@echo " "
@@ -292,6 +292,21 @@ LDFLAGS += -lhamlib
292292
endif
293293

294294

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
295310

296311

297312
# 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
312327
gen_tone.o audio.o audio_stats.o digipeater.o cdigipeater.o pfilter.o dedupe.o tq.o xmit.o morse.o \
313328
ptt.o beacon.o encode_aprs.o latlong.o encode_aprs.o latlong.o textcolor.o \
314329
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 \
316331
misc.a geotranz.a
317332
$(CC) -o $@ $^ $(LDFLAGS)
318333
@echo " "
@@ -325,6 +340,11 @@ ifneq ($(enable_hamlib),)
325340
@echo "\t>\tThis includes support for hamlib."
326341
else
327342
@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."
328348
endif
329349
@echo " "
330350

@@ -435,6 +455,12 @@ kissutil : kissutil.c kiss_frame.c ax25_pad.o fcs_calc.o textcolor.o serial_port
435455
$(CC) $(CFLAGS) -g -DKISSUTIL -o $@ $^ $(LDFLAGS)
436456

437457

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+
438464
# Touch Tone to Speech sample application.
439465

440466
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
569595
$(INSTALL) atest $(INSTALLDIR)/bin
570596
$(INSTALL) ttcalc $(INSTALLDIR)/bin
571597
$(INSTALL) kissutil $(INSTALLDIR)/bin
598+
$(INSTALL) cm108 $(INSTALLDIR)/bin
572599
$(INSTALL) dwespeak.sh $(INSTALLDIR)/bin
573600
#
574601
# 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
643670
$(INSTALL) -D --mode=644 man1/text2tt.1 $(INSTALLDIR)/man/man1/text2tt.1
644671
$(INSTALL) -D --mode=644 man1/tt2text.1 $(INSTALLDIR)/man/man1/tt2text.1
645672
$(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
646678
#
647679
@echo " "
648680
@echo "If this is your first install, not an upgrade, type this to put a copy"

audio.h

+13-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ enum ptt_method_e {
2929
PTT_METHOD_NONE, /* VOX or no transmit. */
3030
PTT_METHOD_SERIAL, /* Serial port RTS or DTR. */
3131
PTT_METHOD_GPIO, /* General purpose I/O, Linux only. */
32-
PTT_METHOD_LPT, /* Parallel printer port, Linux only. */
33-
PTT_METHOD_HAMLIB }; /* HAMLib, Linux only. */
32+
PTT_METHOD_LPT, /* Parallel printer port, Linux only. */
33+
PTT_METHOD_HAMLIB, /* HAMLib, Linux only. */
34+
PTT_METHOD_CM108 }; /* GPIO pin of CM108/CM119/etc. Linux only. */
3435

3536
typedef enum ptt_method_e ptt_method_t;
3637

@@ -191,22 +192,27 @@ struct audio_s {
191192

192193
struct {
193194

194-
ptt_method_t ptt_method; /* none, serial port, GPIO, LPT, HAMLIB. */
195+
ptt_method_t ptt_method; /* none, serial port, GPIO, LPT, HAMLIB, CM108. */
195196

196197
char ptt_device[100]; /* Serial device name for PTT. e.g. COM1 or /dev/ttyS0 */
197198
/* Also used for HAMLIB. Could be host:port when model is 1. */
198-
/* For years, 20 characters was plenty and then along comes this crazy name: */
199+
/* For years, 20 characters was plenty then we start getting extreme names like this: */
200+
/* /dev/serial/by-id/usb-FTDI_Navigator__CAT___2nd_PTT__00000000-if00-port0 */
199201
/* /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller_D-if00-port0 */
200202
/* Issue 104, changed to 100 bytes in version 1.5. */
203+
204+
/* This same field is also used for CM108 GPIO PTT which will */
205+
/* have a name like /dev/hidraw1. */
201206

202207
ptt_line_t ptt_line; /* Control line when using serial port. PTT_LINE_RTS, PTT_LINE_DTR. */
203208
ptt_line_t ptt_line2; /* Optional second one: PTT_LINE_NONE when not used. */
204209

205210
int out_gpio_num; /* GPIO number. Originally this was only for PTT. */
206211
/* It is now more general. */
207212
/* octrl array is indexed by PTT, DCD, or CONnected indicator. */
213+
/* For CM108, this should be in range of 1-8. */
208214

209-
#define MAX_GPIO_NAME_LEN 16 // 12 would cover any case I've seen so this should be safe
215+
#define MAX_GPIO_NAME_LEN 20 // 12 would cover any case I've seen so this should be safe
210216

211217
char out_gpio_name[MAX_GPIO_NAME_LEN];
212218
/* orginally, gpio number NN was assumed to simply */
@@ -215,6 +221,8 @@ struct audio_s {
215221
/* This is filled in by ptt_init so we don't have to */
216222
/* recalculate it each time we access it. */
217223

224+
/* This could probably be collapsed into ptt_device instead of being separate. */
225+
218226
int ptt_lpt_bit; /* Bit number for parallel printer port. */
219227
/* Bit 0 = pin 2, ..., bit 7 = pin 9. */
220228

0 commit comments

Comments
 (0)