@@ -472,6 +472,20 @@ void export_gpio(int ch, int ot, int invert, int direction)
472
472
text_color_set (DW_COLOR_ERROR );
473
473
dw_printf ("Error writing \"%s\" to %s, errno=%d\n" , stemp , gpio_export_path , e );
474
474
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
+ }
475
489
exit (1 );
476
490
}
477
491
}
@@ -914,7 +928,7 @@ void ptt_init (struct audio_s *audio_config_p)
914
928
#if defined(USE_GPIOD )
915
929
// GPIOD
916
930
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 ) {
918
932
for (int ot = 0 ; ot < NUM_OCTYPES ; ot ++ ) {
919
933
if (audio_config_p -> achan [ch ].octrl [ot ].ptt_method == PTT_METHOD_GPIOD ) {
920
934
const char * chip_name = audio_config_p -> achan [ch ].octrl [ot ].out_gpio_name ;
0 commit comments