Skip to content

Commit 7fa91dd

Browse files
authored
Merge pull request #326 from jmkristian/w6jmk-cm108
Windows USE_CM108
2 parents e449e39 + 09de2f6 commit 7fa91dd

File tree

3 files changed

+7
-12
lines changed

3 files changed

+7
-12
lines changed

CMakeLists.txt

+2
Original file line numberDiff line numberDiff line change
@@ -312,6 +312,8 @@ else()
312312
set(ALSA_LIBRARIES "")
313313
set(UDEV_INCLUDE_DIRS "")
314314
set(UDEV_LIBRARIES "")
315+
# Version 1.7 supports CM108/CM119 GPIO PTT for Windows.
316+
set(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -DUSE_CM108")
315317
set(PORTAUDIO_INCLUDE_DIRS "")
316318
set(PORTAUDIO_LIBRARIES "")
317319
endif()

src/direwolf.h

-7
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,6 @@
3737

3838
#endif
3939

40-
// Version 1.7 supports CM108/CM119 GPIO PTT for Windows.
41-
// Define it here so we don't need to have separate Windows
42-
// check in all the places that test this.
43-
#if __WIN32__
44-
#define USE_CM108 1
45-
#endif
46-
4740
/*
4841
* Previously, we could handle only a single audio device.
4942
* This meant we could have only two radio channels.

src/ptt.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -162,15 +162,15 @@
162162
#include <hamlib/rig.h>
163163
#endif
164164

165-
#ifdef USE_CM108
166-
#include "cm108.h"
167-
#endif
168-
169165
/* So we can have more common code for fd. */
170166
typedef int HANDLE;
171167
#define INVALID_HANDLE_VALUE (-1)
172168

173-
#endif
169+
#endif /* __WIN32__ */
170+
171+
#ifdef USE_CM108
172+
#include "cm108.h"
173+
#endif /* USE_CM108 */
174174

175175
#include "textcolor.h"
176176
#include "audio.h"

0 commit comments

Comments
 (0)