Skip to content

Commit ad5dbae

Browse files
committed
Refine ptt gpiod.
1 parent a3f6820 commit ad5dbae

File tree

2 files changed

+19
-3
lines changed

2 files changed

+19
-3
lines changed

src/config.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -1852,7 +1852,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
18521852
t = split(NULL,0);
18531853
if (t == NULL) {
18541854
text_color_set(DW_COLOR_ERROR);
1855-
dw_printf ("Config file line %d: Missing GPIO chip for %s.\n", line, otname);
1855+
dw_printf ("Config file line %d: Missing GPIO chip name for %s.\n", line, otname);
1856+
dw_printf ("Use the \"gpioinfo\" command to get a list of gpio chip names and corresponding I/O lines.\n");
18561857
continue;
18571858
}
18581859
strlcpy(p_audio_config->achan[channel].octrl[ot].out_gpio_name, t,
@@ -1876,7 +1877,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
18761877
p_audio_config->achan[channel].octrl[ot].ptt_method = PTT_METHOD_GPIOD;
18771878
#else
18781879
text_color_set(DW_COLOR_ERROR);
1879-
dw_printf ("GPIOD is not supported.\n");
1880+
dw_printf ("Application was not built with optional support for GPIOD.\n");
1881+
dw_printf ("Install packages gpiod and libgpiod-dev, remove 'build' subdirectory, then rebuild.\n");
18801882
#endif /* USE_GPIOD*/
18811883
#endif /* __WIN32__ */
18821884
}

src/ptt.c

+15-1
Original file line numberDiff line numberDiff line change
@@ -472,6 +472,20 @@ void export_gpio(int ch, int ot, int invert, int direction)
472472
text_color_set(DW_COLOR_ERROR);
473473
dw_printf ("Error writing \"%s\" to %s, errno=%d\n", stemp, gpio_export_path, e);
474474
dw_printf ("%s\n", strerror(e));
475+
476+
if (e == 22) {
477+
// It appears that error 22 occurs when sysfs gpio is not available.
478+
// (See https://github.com/wb2osz/direwolf/issues/503)
479+
//
480+
// The solution might be to use the new gpiod approach.
481+
482+
dw_printf ("It looks like gpio with sysfs is not supported on this operating system.\n");
483+
dw_printf ("Rather than the following form, in the configuration file,\n);
484+
dw_printf (" PTT GPIO %s\n", stemp);
485+
dw_printf ("try using gpiod form instead. e.g.\n");
486+
dw_printf (" PTT GPIOD gpiochip0 %s\n", stemp);
487+
dw_printf ("You can get a list of gpio chip names and corresponding I/O lines with \"gpioinfo\" command.\n");
488+
}
475489
exit (1);
476490
}
477491
}
@@ -914,7 +928,7 @@ void ptt_init (struct audio_s *audio_config_p)
914928
#if defined(USE_GPIOD)
915929
// GPIOD
916930
for (ch = 0; ch < MAX_CHANS; ch++) {
917-
if (save_audio_config_p->achan[ch].medium == MEDIUM_RADIO) {
931+
if (save_audio_config_p->chan_medium[ch] == MEDIUM_RADIO) {
918932
for (int ot = 0; ot < NUM_OCTYPES; ot++) {
919933
if (audio_config_p->achan[ch].octrl[ot].ptt_method == PTT_METHOD_GPIOD) {
920934
const char *chip_name = audio_config_p->achan[ch].octrl[ot].out_gpio_name;

0 commit comments

Comments
 (0)