162
162
#include <hamlib/rig.h>
163
163
#endif
164
164
165
+ #ifdef USE_GPIOD
166
+ #include <gpiod.h>
167
+ #endif
168
+
165
169
/* So we can have more common code for fd. */
166
170
typedef int HANDLE ;
167
171
#define INVALID_HANDLE_VALUE (-1)
@@ -634,6 +638,31 @@ void export_gpio(int ch, int ot, int invert, int direction)
634
638
get_access_to_gpio (gpio_value_path );
635
639
}
636
640
641
+ #if defined(USE_GPIOD )
642
+ int gpiod_probe (const char * chip_name , int line_number )
643
+ {
644
+ struct gpiod_chip * chip ;
645
+ chip = gpiod_chip_open_by_name (chip_name );
646
+ if (chip == NULL ) {
647
+ text_color_set (DW_COLOR_ERROR );
648
+ dw_printf ("Can't open GPIOD chip %s.\n" , chip_name );
649
+ return -1 ;
650
+ }
651
+
652
+ struct gpiod_line * line ;
653
+ line = gpiod_chip_get_line (chip , line_number );
654
+ if (line == NULL ) {
655
+ text_color_set (DW_COLOR_ERROR );
656
+ dw_printf ("Can't get GPIOD line %d.\n" , line_number );
657
+ return -1 ;
658
+ }
659
+ if (ptt_debug_level >= 2 ) {
660
+ text_color_set (DW_COLOR_DEBUG );
661
+ dw_printf ("GPIOD probe OK. Chip: %s line: %d\n" , chip_name , line_number );
662
+ }
663
+ return 0 ;
664
+ }
665
+ #endif /* USE_GPIOD */
637
666
#endif /* not __WIN32__ */
638
667
639
668
@@ -650,7 +679,8 @@ void export_gpio(int ch, int ot, int invert, int direction)
650
679
* ptt_method Method for PTT signal.
651
680
* PTT_METHOD_NONE - not configured. Could be using VOX.
652
681
* PTT_METHOD_SERIAL - serial (com) port.
653
- * PTT_METHOD_GPIO - general purpose I/O.
682
+ * PTT_METHOD_GPIO - general purpose I/O (sysfs).
683
+ * PTT_METHOD_GPIOD - general purpose I/O (libgpiod).
654
684
* PTT_METHOD_LPT - Parallel printer port.
655
685
* PTT_METHOD_HAMLIB - HAMLib rig control.
656
686
* PTT_METHOD_CM108 - GPIO pins of CM108 etc. USB Audio.
@@ -729,12 +759,13 @@ void ptt_init (struct audio_s *audio_config_p)
729
759
if (ptt_debug_level >= 2 ) {
730
760
731
761
text_color_set (DW_COLOR_DEBUG );
732
- dw_printf ("ch=%d, %s method=%d, device=%s, line=%d, gpio=%d, lpt_bit=%d, invert=%d\n" ,
762
+ dw_printf ("ch=%d, %s method=%d, device=%s, line=%d, name=%s, gpio=%d, lpt_bit=%d, invert=%d\n" ,
733
763
ch ,
734
764
otnames [ot ],
735
765
audio_config_p -> achan [ch ].octrl [ot ].ptt_method ,
736
766
audio_config_p -> achan [ch ].octrl [ot ].ptt_device ,
737
767
audio_config_p -> achan [ch ].octrl [ot ].ptt_line ,
768
+ audio_config_p -> achan [ch ].octrl [ot ].out_gpio_name ,
738
769
audio_config_p -> achan [ch ].octrl [ot ].out_gpio_num ,
739
770
audio_config_p -> achan [ch ].octrl [ot ].ptt_lpt_bit ,
740
771
audio_config_p -> achan [ch ].octrl [ot ].ptt_invert );
@@ -880,7 +911,28 @@ void ptt_init (struct audio_s *audio_config_p)
880
911
if (using_gpio ) {
881
912
get_access_to_gpio ("/sys/class/gpio/export" );
882
913
}
883
-
914
+ #if defined(USE_GPIOD )
915
+ // GPIOD
916
+ for (ch = 0 ; ch < MAX_CHANS ; ch ++ ) {
917
+ if (save_audio_config_p -> achan [ch ].medium == MEDIUM_RADIO ) {
918
+ for (int ot = 0 ; ot < NUM_OCTYPES ; ot ++ ) {
919
+ if (audio_config_p -> achan [ch ].octrl [ot ].ptt_method == PTT_METHOD_GPIOD ) {
920
+ const char * chip_name = audio_config_p -> achan [ch ].octrl [ot ].out_gpio_name ;
921
+ int line_number = audio_config_p -> achan [ch ].octrl [ot ].out_gpio_num ;
922
+ int rc = gpiod_probe (chip_name , line_number );
923
+ if (rc < 0 ) {
924
+ text_color_set (DW_COLOR_ERROR );
925
+ dw_printf ("Disable PTT for channel %d\n" , ch );
926
+ audio_config_p -> achan [ch ].octrl [ot ].ptt_method = PTT_METHOD_NONE ;
927
+ } else {
928
+ // Set initial state off ptt_set will invert output signal if appropriate.
929
+ ptt_set (ot , ch , 0 );
930
+ }
931
+ }
932
+ }
933
+ }
934
+ }
935
+ #endif /* USE_GPIOD */
884
936
/*
885
937
* We should now be able to create the device nodes for
886
938
* the pins we want to use.
@@ -1298,6 +1350,18 @@ void ptt_set (int ot, int chan, int ptt_signal)
1298
1350
close (fd );
1299
1351
1300
1352
}
1353
+
1354
+ #if defined(USE_GPIOD )
1355
+ if (save_audio_config_p -> achan [chan ].octrl [ot ].ptt_method == PTT_METHOD_GPIOD ) {
1356
+ const char * chip = save_audio_config_p -> achan [chan ].octrl [ot ].out_gpio_name ;
1357
+ int line = save_audio_config_p -> achan [chan ].octrl [ot ].out_gpio_num ;
1358
+ int rc = gpiod_ctxless_set_value (chip , line , ptt , false, "direwolf" , NULL , NULL );
1359
+ if (ptt_debug_level >= 1 ) {
1360
+ text_color_set (DW_COLOR_DEBUG );
1361
+ dw_printf ("PTT_METHOD_GPIOD chip: %s line: %d ptt: %d rc: %d\n" , chip , line , ptt , rc );
1362
+ }
1363
+ }
1364
+ #endif /* USE_GPIOD */
1301
1365
#endif
1302
1366
1303
1367
/*
0 commit comments