We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ebacfea commit 979385aCopy full SHA for 979385a
ptt.c
@@ -556,6 +556,11 @@ void ptt_init (struct audio_s *audio_config_p)
556
export_gpio(audio_config_p->achan[ch].octrl[ot].ptt_gpio, audio_config_p->achan[ch].octrl[ot].ptt_invert, 1);
557
}
558
559
+ for (ot = 0; ot < NUM_ICTYPES; ot++) {
560
+ if (audio_config_p->achan[ch].ictrl[ot].method == PTT_METHOD_GPIO) {
561
+ export_gpio(audio_config_p->achan[ch].ictrl[ot].gpio, audio_config_p->achan[ch].ictrl[ot].invert, 0);
562
+ }
563
564
565
566
#endif
0 commit comments