Skip to content

Commit a1afcbb

Browse files
committed
Limited support for CM108/CM119 GPIO PTT on Windows.
1 parent 667e9ca commit a1afcbb

10 files changed

+325
-90
lines changed

CHANGES.md

+2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@
77

88
### New Features: ###
99

10+
- Limited support for CM109/CM119 GPIO PTT on Windows.
11+
1012
- Dire Wolf now advertises itself using DNS Service Discovery. This allows suitable APRS / Packet Radio applications to find a network KISS TNC without knowing the IP address or TCP port. Thanks to Hessu for providing this. Currently available only for Linux and Mac OSX. [Read all about it here.](https://github.com/hessu/aprs-specs/blob/master/TCP-KISS-DNS-SD.md)
1113

1214
- The transmit calibration tone (-x) command line option now accepts a radio channel number and/or a single letter mode: a = alternate tones, m = mark tone, s = space tone, p = PTT only no sound.

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ set(CUSTOM_SRC_DIR "${CMAKE_SOURCE_DIR}/src")
7272
set(CUSTOM_EXTERNAL_DIR "${CMAKE_SOURCE_DIR}/external")
7373
set(CUSTOM_MISC_DIR "${CUSTOM_EXTERNAL_DIR}/misc")
7474
set(CUSTOM_REGEX_DIR "${CUSTOM_EXTERNAL_DIR}/regex")
75+
set(CUSTOM_HIDAPI_DIR "${CUSTOM_EXTERNAL_DIR}/hidapi")
7576
set(CUSTOM_GEOTRANZ_DIR "${CUSTOM_EXTERNAL_DIR}/geotranz")
7677
set(CUSTOM_DATA_DIR "${CMAKE_SOURCE_DIR}/data")
7778
set(CUSTOM_SCRIPTS_DIR "${CMAKE_SOURCE_DIR}/scripts")
@@ -321,6 +322,7 @@ add_subdirectory(data)
321322
# external libraries
322323
add_subdirectory(${CUSTOM_GEOTRANZ_DIR})
323324
add_subdirectory(${CUSTOM_REGEX_DIR})
325+
add_subdirectory(${CUSTOM_HIDAPI_DIR})
324326
add_subdirectory(${CUSTOM_MISC_DIR})
325327

326328
# direwolf source code and utilities

cmake/modules/FindCPUflags.cmake

-1
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,6 @@ endfunction()
7878
# The default will be set for maximum portability so packagers won't need to
7979
# to anything special.
8080
#
81-
set(FORCE_SSE 1)
8281
#
8382
# While ENABLE_GENERIC also had the desired result (for x86_64), I don't think
8483
# it is the right approach. It prevents the detection of the architecture,

conf/generic.conf

+16-4
Original file line numberDiff line numberDiff line change
@@ -263,10 +263,22 @@
263263
%C%
264264
%C%#DTMF
265265
%C%
266-
%C%#
267-
%C%# If not using a VOX circuit, the transmitter Push to Talk (PTT)
268-
%C%# control is usually wired to a serial port with a suitable interface circuit.
269-
%C%# DON'T connect it directly!
266+
%L%# If using a C-Media CM108/CM119 or similar USB Audio Adapter,
267+
%L%# you can use a GPIO pin for PTT control. This is very convenient
268+
%L%# because a single USB connection is used for both audio and PTT.
269+
%L%# Example:
270+
%L%
271+
%L%#PTT CM108
272+
%L%
273+
%W%# If using a C-Media CM108/CM119 or similar USB Audio Adapter,
274+
%W%# you can use a GPIO pin for PTT control. This is very convenient
275+
%W%# because a single USB connection is used for both audio and PTT.
276+
%W%# Example:
277+
%W%
278+
%W%#PTT CM108
279+
%W%%C%#
280+
%C%# The transmitter Push to Talk (PTT) control can be wired to a serial port
281+
%C%# with a suitable interface circuit. DON'T connect it directly!
270282
%C%#
271283
%C%# For the PTT command, specify the device and either RTS or DTR.
272284
%C%# RTS or DTR may be preceded by "-" to invert the signal.

src/CMakeLists.txt

+23-4
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ include_directories(
99
${UDEV_INCLUDE_DIRS}
1010
${PORTAUDIO_INCLUDE_DIRS}
1111
${CUSTOM_GEOTRANZ_DIR}
12+
${CUSTOM_HIDAPI_DIR}
1213
)
1314

1415
if(WIN32 OR CYGWIN)
@@ -106,6 +107,7 @@ if(LINUX)
106107
elseif(WIN32 OR CYGWIN) # windows
107108
list(APPEND direwolf_SOURCES
108109
audio_win.c
110+
cm108.c
109111

110112
# icon
111113
# require plain gcc binary or link
@@ -134,6 +136,7 @@ target_link_libraries(direwolf
134136
${GEOTRANZ_LIBRARIES}
135137
${MISC_LIBRARIES}
136138
${REGEX_LIBRARIES}
139+
${HIDAPI_LIBRARIES}
137140
Threads::Threads
138141
${GPSD_LIBRARIES}
139142
${HAMLIB_LIBRARIES}
@@ -147,7 +150,7 @@ if(WIN32 OR CYGWIN)
147150
set_target_properties(direwolf
148151
PROPERTIES COMPILE_FLAGS "-DUSE_REGEX_STATIC"
149152
)
150-
target_link_libraries(direwolf winmm ws2_32)
153+
target_link_libraries(direwolf winmm ws2_32 setupapi)
151154
endif()
152155

153156
# decode_aprs
@@ -413,8 +416,11 @@ endif()
413416

414417

415418
# List USB audio adapters than can use GPIO for PTT.
419+
# Originally for Linux only (using udev).
420+
# Version 1.7 adds it for Windows. Needs hidapi library.
421+
416422
# cm108
417-
if(UDEV_FOUND)
423+
if(UDEV_FOUND OR WIN32 OR CYGWIN)
418424
list(APPEND cm108_SOURCES
419425
cm108.c
420426
textcolor.c
@@ -430,8 +436,21 @@ if(UDEV_FOUND)
430436

431437
target_link_libraries(cm108
432438
${MISC_LIBRARIES}
433-
${UDEV_LIBRARIES}
434439
)
440+
441+
if (LINUX)
442+
target_link_libraries(cm108
443+
${UDEV_LIBRARIES}
444+
)
445+
endif()
446+
447+
if (WIN32 OR CYGWIN)
448+
target_link_libraries(cm108
449+
${HIDAPI_LIBRARIES}
450+
ws2_32
451+
setupapi
452+
)
453+
endif()
435454
endif()
436455

437456

@@ -496,6 +515,6 @@ install(TARGETS atest DESTINATION ${INSTALL_BIN_DIR})
496515
install(TARGETS ttcalc DESTINATION ${INSTALL_BIN_DIR})
497516
install(TARGETS kissutil DESTINATION ${INSTALL_BIN_DIR})
498517
install(TARGETS appserver DESTINATION ${INSTALL_BIN_DIR})
499-
if(UDEV_FOUND)
518+
if(UDEV_FOUND OR WIN32 OR CYGWIN)
500519
install(TARGETS cm108 DESTINATION ${INSTALL_BIN_DIR})
501520
endif()

src/audio.h

+6-4
Original file line numberDiff line numberDiff line change
@@ -240,23 +240,25 @@ struct audio_s {
240240

241241
ptt_method_t ptt_method; /* none, serial port, GPIO, LPT, HAMLIB, CM108. */
242242

243-
char ptt_device[100]; /* Serial device name for PTT. e.g. COM1 or /dev/ttyS0 */
243+
char ptt_device[128]; /* Serial device name for PTT. e.g. COM1 or /dev/ttyS0 */
244244
/* Also used for HAMLIB. Could be host:port when model is 1. */
245245
/* For years, 20 characters was plenty then we start getting extreme names like this: */
246246
/* /dev/serial/by-id/usb-FTDI_Navigator__CAT___2nd_PTT__00000000-if00-port0 */
247247
/* /dev/serial/by-id/usb-Prolific_Technology_Inc._USB-Serial_Controller_D-if00-port0 */
248248
/* Issue 104, changed to 100 bytes in version 1.5. */
249249

250-
/* This same field is also used for CM108 GPIO PTT which will */
251-
/* have a name like /dev/hidraw1. */
250+
/* This same field is also used for CM108/CM119 GPIO PTT which will */
251+
/* have a name like /dev/hidraw1 for Linux or */
252+
/* \\?\hid#vid_0d8c&pid_0008&mi_03#8&39d3555&0&0000#{4d1e55b2-f16f-11cf-88cb-001111000030} */
253+
/* for Windows. Largest observed was 95 but add some extra to be safe. */
252254

253255
ptt_line_t ptt_line; /* Control line when using serial port. PTT_LINE_RTS, PTT_LINE_DTR. */
254256
ptt_line_t ptt_line2; /* Optional second one: PTT_LINE_NONE when not used. */
255257

256258
int out_gpio_num; /* GPIO number. Originally this was only for PTT. */
257259
/* It is now more general. */
258260
/* octrl array is indexed by PTT, DCD, or CONnected indicator. */
259-
/* For CM108, this should be in range of 1-8. */
261+
/* For CM108/CM119, this should be in range of 1-8. */
260262

261263
#define MAX_GPIO_NAME_LEN 20 // 12 would cover any case I've seen so this should be safe
262264

0 commit comments

Comments
 (0)