Skip to content

Commit 979385a

Browse files
committed
Export GPIO for inputs
1 parent ebacfea commit 979385a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

ptt.c

+5
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,11 @@ void ptt_init (struct audio_s *audio_config_p)
556556
export_gpio(audio_config_p->achan[ch].octrl[ot].ptt_gpio, audio_config_p->achan[ch].octrl[ot].ptt_invert, 1);
557557
}
558558
}
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+
}
559564
}
560565
}
561566
#endif

0 commit comments

Comments
 (0)