Skip to content

Commit ebacfea

Browse files
committed
PTT init changes for TXINH
1 parent 64f9313 commit ebacfea

File tree

3 files changed

+122
-106
lines changed

3 files changed

+122
-106
lines changed

audio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ struct audio_s {
206206
#define NUM_ICTYPES 1
207207

208208
struct {
209-
int enable; /* should we bother checking this input? */
209+
ptt_method_t method; /* none, serial port, GPIO, LPT. */
210210
int gpio; /* GPIO number */
211211
int invert; /* 1 = active low */
212212
} ictrl[NUM_ICTYPES];

config.c

+1
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16411641
p_audio_config->achan[channel].ictrl[it].gpio = atoi(t);
16421642
p_audio_config->achan[channel].ictrl[it].invert = 0;
16431643
}
1644+
p_audio_config->achan[channel].ictrl[it].method = PTT_METHOD_GPIO;
16441645
#endif
16451646
}
16461647
}

ptt.c

+120-105
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,120 @@ void ptt_set_debug(int debug)
147147
ptt_debug_level = debug;
148148
}
149149

150+
void export_gpio(int gpio, int invert, int direction)
151+
{
152+
HANDLE fd;
153+
char stemp[80];
154+
struct stat finfo;
155+
int err;
156+
157+
fd = open("/sys/class/gpio/export", O_WRONLY);
158+
if (fd < 0) {
159+
text_color_set(DW_COLOR_ERROR);
160+
dw_printf ("Permissions do not allow ordinary users to access GPIO.\n");
161+
dw_printf ("Log in as root and type this command:\n");
162+
dw_printf (" chmod go+w /sys/class/gpio/export /sys/class/gpio/unexport\n");
163+
exit (1);
164+
}
165+
snprintf (stemp, sizeof(stemp), "%d", gpio);
166+
if (write (fd, stemp, strlen(stemp)) != strlen(stemp)) {
167+
int e = errno;
168+
/* Ignore EBUSY error which seems to mean */
169+
/* the device node already exists. */
170+
if (e != EBUSY) {
171+
text_color_set(DW_COLOR_ERROR);
172+
dw_printf ("Error writing \"%s\" to /sys/class/gpio/export, errno=%d\n", stemp, e);
173+
dw_printf ("%s\n", strerror(e));
174+
exit (1);
175+
}
176+
}
177+
close (fd);
178+
179+
/*
180+
Idea for future:
181+
182+
On the RPi, the device path for GPIO number XX is /sys/class/gpio/gpioXX.
183+
There was a report that it is different for the Cubieboard. For instance
184+
GPIO 61 has gpio61_pi13 in the path. This indicates connector "i" pin 13.
185+
186+
For another similar single board computer, we find the same thing:
187+
https://www.olimex.com/wiki/A20-OLinuXino-LIME#GPIO_under_Linux
188+
189+
How should we deal with this? Some possibilities:
190+
191+
(1) The user might explicitly mention the name in direwolf.conf.
192+
(2) We might be able to find the names in some system device config file.
193+
(3) Get a directory listing of /sys/class/gpio then search for a
194+
matching name. Suppose we wanted GPIO 61. First look for an exact
195+
match to "gpio61". If that is not found, look for something
196+
matching the pattern "gpio61_*".
197+
*/
198+
199+
/*
200+
* We will have the same permission problem if not root.
201+
* We only care about "direction" and "value".
202+
*/
203+
snprintf (stemp, sizeof(stemp), "sudo chmod go+rw /sys/class/gpio/gpio%d/direction", gpio);
204+
err = system (stemp);
205+
snprintf (stemp, sizeof(stemp), "sudo chmod go+rw /sys/class/gpio/gpio%d/value", gpio);
206+
err = system (stemp);
207+
208+
snprintf (stemp, sizeof(stemp), "/sys/class/gpio/gpio%d/value", gpio);
209+
210+
if (stat(stemp, &finfo) < 0) {
211+
int e = errno;
212+
text_color_set(DW_COLOR_ERROR);
213+
dw_printf ("Failed to get status for %s \n", stemp);
214+
dw_printf ("%s\n", strerror(e));
215+
exit (1);
216+
}
217+
218+
if (geteuid() != 0) {
219+
if ( ! (finfo.st_mode & S_IWOTH)) {
220+
text_color_set(DW_COLOR_ERROR);
221+
dw_printf ("Permissions do not allow ordinary users to access GPIO.\n");
222+
dw_printf ("Log in as root and type these commands:\n");
223+
dw_printf (" chmod go+rw /sys/class/gpio/gpio%d/direction", gpio);
224+
dw_printf (" chmod go+rw /sys/class/gpio/gpio%d/value", gpio);
225+
exit (1);
226+
}
227+
}
228+
229+
/*
230+
* Set output direction and initial state
231+
*/
232+
233+
snprintf (stemp, sizeof(stemp), "/sys/class/gpio/gpio%d/direction", gpio);
234+
fd = open(stemp, O_WRONLY);
235+
if (fd < 0) {
236+
int e = errno;
237+
text_color_set(DW_COLOR_ERROR);
238+
dw_printf ("Error opening %s\n", stemp);
239+
dw_printf ("%s\n", strerror(e));
240+
exit (1);
241+
}
242+
243+
char gpio_val[8];
244+
if (direction) {
245+
if (invert) {
246+
strlcpy (gpio_val, "high", sizeof(gpio_val));
247+
}
248+
else {
249+
strlcpy (gpio_val, "low", sizeof(gpio_val));
250+
}
251+
}
252+
else {
253+
strlcpy (gpio_val, "in", sizeof(gpio_val));
254+
}
255+
if (write (fd, gpio_val, strlen(gpio_val)) != strlen(gpio_val)) {
256+
int e = errno;
257+
text_color_set(DW_COLOR_ERROR);
258+
dw_printf ("Error writing initial state to %s\n", stemp);
259+
dw_printf ("%s\n", strerror(e));
260+
exit (1);
261+
}
262+
close (fd);
263+
}
150264

151265
/*-------------------------------------------------------------------
152266
*
@@ -368,6 +482,11 @@ void ptt_init (struct audio_s *audio_config_p)
368482
using_gpio = 1;
369483
}
370484
}
485+
for (ot = 0; ot < NUM_ICTYPES; ot++) {
486+
if (audio_config_p->achan[ch].ictrl[ot].method == PTT_METHOD_GPIO) {
487+
using_gpio = 1;
488+
}
489+
}
371490
}
372491
}
373492

@@ -434,111 +553,7 @@ void ptt_init (struct audio_s *audio_config_p)
434553
int ot;
435554
for (ot = 0; ot < NUM_OCTYPES; ot++) {
436555
if (audio_config_p->achan[ch].octrl[ot].ptt_method == PTT_METHOD_GPIO) {
437-
char stemp[80];
438-
struct stat finfo;
439-
int err;
440-
441-
fd = open("/sys/class/gpio/export", O_WRONLY);
442-
if (fd < 0) {
443-
text_color_set(DW_COLOR_ERROR);
444-
dw_printf ("Permissions do not allow ordinary users to access GPIO.\n");
445-
dw_printf ("Log in as root and type this command:\n");
446-
dw_printf (" chmod go+w /sys/class/gpio/export /sys/class/gpio/unexport\n");
447-
exit (1);
448-
}
449-
snprintf (stemp, sizeof(stemp), "%d", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
450-
if (write (fd, stemp, strlen(stemp)) != strlen(stemp)) {
451-
int e = errno;
452-
/* Ignore EBUSY error which seems to mean */
453-
/* the device node already exists. */
454-
if (e != EBUSY) {
455-
text_color_set(DW_COLOR_ERROR);
456-
dw_printf ("Error writing \"%s\" to /sys/class/gpio/export, errno=%d\n", stemp, e);
457-
dw_printf ("%s\n", strerror(e));
458-
exit (1);
459-
}
460-
}
461-
close (fd);
462-
463-
/*
464-
Idea for future:
465-
466-
On the RPi, the device path for GPIO number XX is /sys/class/gpio/gpioXX.
467-
There was a report that it is different for the Cubieboard. For instance
468-
GPIO 61 has gpio61_pi13 in the path. This indicates connector "i" pin 13.
469-
470-
For another similar single board computer, we find the same thing:
471-
https://www.olimex.com/wiki/A20-OLinuXino-LIME#GPIO_under_Linux
472-
473-
How should we deal with this? Some possibilities:
474-
475-
(1) The user might explicitly mention the name in direwolf.conf.
476-
(2) We might be able to find the names in some system device config file.
477-
(3) Get a directory listing of /sys/class/gpio then search for a
478-
matching name. Suppose we wanted GPIO 61. First look for an exact
479-
match to "gpio61". If that is not found, look for something
480-
matching the pattern "gpio61_*".
481-
*/
482-
483-
/*
484-
* We will have the same permission problem if not root.
485-
* We only care about "direction" and "value".
486-
*/
487-
snprintf (stemp, sizeof(stemp), "sudo chmod go+rw /sys/class/gpio/gpio%d/direction", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
488-
err = system (stemp);
489-
snprintf (stemp, sizeof(stemp), "sudo chmod go+rw /sys/class/gpio/gpio%d/value", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
490-
err = system (stemp);
491-
492-
snprintf (stemp, sizeof(stemp), "/sys/class/gpio/gpio%d/value", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
493-
494-
if (stat(stemp, &finfo) < 0) {
495-
int e = errno;
496-
text_color_set(DW_COLOR_ERROR);
497-
dw_printf ("Failed to get status for %s \n", stemp);
498-
dw_printf ("%s\n", strerror(e));
499-
exit (1);
500-
}
501-
502-
if (geteuid() != 0) {
503-
if ( ! (finfo.st_mode & S_IWOTH)) {
504-
text_color_set(DW_COLOR_ERROR);
505-
dw_printf ("Permissions do not allow ordinary users to access GPIO.\n");
506-
dw_printf ("Log in as root and type these commands:\n");
507-
dw_printf (" chmod go+rw /sys/class/gpio/gpio%d/direction", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
508-
dw_printf (" chmod go+rw /sys/class/gpio/gpio%d/value", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
509-
exit (1);
510-
}
511-
}
512-
513-
/*
514-
* Set output direction with initial state off.
515-
*/
516-
517-
snprintf (stemp, sizeof(stemp), "/sys/class/gpio/gpio%d/direction", audio_config_p->achan[ch].octrl[ot].ptt_gpio);
518-
fd = open(stemp, O_WRONLY);
519-
if (fd < 0) {
520-
int e = errno;
521-
text_color_set(DW_COLOR_ERROR);
522-
dw_printf ("Error opening %s\n", stemp);
523-
dw_printf ("%s\n", strerror(e));
524-
exit (1);
525-
}
526-
527-
char hilo[8];
528-
if (audio_config_p->achan[ch].octrl[ot].ptt_invert) {
529-
strlcpy (hilo, "high", sizeof(hilo));
530-
}
531-
else {
532-
strlcpy (hilo, "low", sizeof(hilo));
533-
}
534-
if (write (fd, hilo, strlen(hilo)) != strlen(hilo)) {
535-
int e = errno;
536-
text_color_set(DW_COLOR_ERROR);
537-
dw_printf ("Error writing initial state to %s\n", stemp);
538-
dw_printf ("%s\n", strerror(e));
539-
exit (1);
540-
}
541-
close (fd);
556+
export_gpio(audio_config_p->achan[ch].octrl[ot].ptt_gpio, audio_config_p->achan[ch].octrl[ot].ptt_invert, 1);
542557
}
543558
}
544559
}

0 commit comments

Comments
 (0)