File tree 2 files changed +26
-3
lines changed
2 files changed +26
-3
lines changed Original file line number Diff line number Diff line change @@ -125,7 +125,16 @@ On Debian / Ubuntu / Raspbian:
125
125
126
126
Or on Red Hat / Fedora / Centos:
127
127
128
- sudo yum install cmake
128
+ CentOS 6 & 7 currently have cmake 2.8 but we need 3.1 or later.
129
+ First you need to enable the EPEL repository. Add a symlink if you want to type cmake rather than cmake3.
130
+
131
+ sudo yum install epel-release
132
+ sudo rpm -e cmake
133
+ sudo yum install cmake3
134
+ sudo ln -s /usr/bin/cmake3 /usr/bin/cmake
135
+
136
+ Continue with the other required packages:
137
+
129
138
sudo yum install alsa-lib-devel
130
139
sudo yum install libudev-devel
131
140
Original file line number Diff line number Diff line change 62
62
*---------------------------------------------------------------*/
63
63
64
64
/*
65
- A growing number of people have been asking about support for the DMK URI
66
- or the similar RB-USB RIM.
65
+ A growing number of people have been asking about support for the DMK URI,
66
+ RB-USB RIM, etc .
67
67
68
68
These use a C-Media CM108/CM119 with an interesting addition, a GPIO
69
69
pin is used to drive PTT. Here is some related information.
78
78
http://www.repeater-builder.com/products/usb-rim-lite.html
79
79
http://www.repeater-builder.com/voip/pdf/cm119-datasheet.pdf
80
80
81
+ RA-35:
82
+
83
+ http://www.masterscommunications.com/products/radio-adapter/ra35.html
84
+
85
+ DINAH:
86
+
87
+ https://hamprojects.info/dinah/
88
+
89
+
81
90
Homebrew versions of the same idea:
82
91
83
92
http://images.ohnosec.org/usbfob.pdf
147
156
#include <unistd.h>
148
157
#include <errno.h>
149
158
#include <grp.h>
159
+
160
+ #ifndef __USE_BSD
161
+ #define __USE_BSD // Needed for gcc 4.8.5 to find definitions for scandir
162
+ // and alphasort. Newer compilers don't have this issue.
163
+ #endif
150
164
#include <dirent.h>
151
165
152
166
#ifdef USE_HAMLIB
You can’t perform that action at this time.
0 commit comments