Skip to content

Commit d9ca8cd

Browse files
committed
Implement TXINH
1 parent 979385a commit d9ca8cd

File tree

4 files changed

+85
-1
lines changed

4 files changed

+85
-1
lines changed

atest.c

+4
Original file line numberDiff line numberDiff line change
@@ -679,6 +679,10 @@ void ptt_set (int ot, int chan, int ptt_signal)
679679
return;
680680
}
681681

682+
int get_input (int it, int chan)
683+
{
684+
return -1;
685+
}
682686

683687
static void usage (void) {
684688

hdlc_rec.c

+5-1
Original file line numberDiff line numberDiff line change
@@ -634,9 +634,13 @@ void dcd_change (int chan, int subchan, int state)
634634

635635
int hdlc_rec_data_detect_any (int chan)
636636
{
637+
int busy = 0;
638+
637639
assert (chan >= 0 && chan < MAX_CHANS);
638640

639-
return (composite_dcd[chan] != 0);
641+
if (composite_dcd[chan] != 0) busy = 1;
642+
643+
if (get_input(ICTYPE_TXINH, chan) == 1) busy = 1;
640644

641645
} /* end hdlc_rec_data_detect_any */
642646

ptt.c

+75
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,21 @@ void ptt_set_debug(int debug)
147147
ptt_debug_level = debug;
148148
}
149149

150+
/*-------------------------------------------------------------------
151+
*
152+
* Name: export_gpio
153+
*
154+
* Purpose: Tell the GPIO subsystem to export a GPIO line for
155+
* us to use, and set the initial state of the GPIO.
156+
*
157+
* Inputs: gpio - GPIO line to export
158+
* invert: - Is the GPIO active low?
159+
* direction: - 0 for input, 1 for output
160+
*
161+
* Outputs: None.
162+
*
163+
*------------------------------------------------------------------*/
164+
150165
void export_gpio(int gpio, int invert, int direction)
151166
{
152167
HANDLE fd;
@@ -843,7 +858,67 @@ void ptt_set (int ot, int chan, int ptt_signal)
843858

844859
} /* end ptt_set */
845860

861+
/*-------------------------------------------------------------------
862+
*
863+
* Name: get_input
864+
*
865+
* Purpose: Read the value of an input line
866+
*
867+
* Inputs: it - Input type (ICTYPE_TCINH supported so far)
868+
* chan - Audio channel number
869+
*
870+
* Outputs: 0 = inactive, 1 = active, -1 = error
871+
*
872+
* ------------------------------------------------------------------*/
873+
874+
int get_input (int it, int chan)
875+
{
876+
assert (it >= 0 && it < NUM_ICTYPES);
877+
assert (chan >= 0 && chan < MAX_CHANS);
846878

879+
if ( ! save_audio_config_p->achan[chan].valid) {
880+
text_color_set(DW_COLOR_ERROR);
881+
dw_printf ("Internal error, get_input ( %d, %d ), did not expect invalid channel.\n", it, chan);
882+
return -1;
883+
}
884+
885+
#if __WIN32__
886+
#else
887+
if (save_audio_config_p->achan[chan].ictrl[it].method == PTT_METHOD_GPIO) {
888+
int fd;
889+
char stemp[80];
890+
891+
snprintf (stemp, sizeof(stemp), "/sys/class/gpio/gpio%d/value", save_audio_config_p->achan[chan].ictrl[it].gpio);
892+
893+
fd = open(stemp, O_RDONLY);
894+
if (fd < 0) {
895+
int e = errno;
896+
text_color_set(DW_COLOR_ERROR);
897+
dw_printf ("Error opening %s to check input.\n", stemp);
898+
dw_printf ("%s\n", strerror(e));
899+
return -1;
900+
}
901+
902+
char vtemp[2];
903+
if (read (fd, vtemp, 1) != 1) {
904+
int e = errno;
905+
text_color_set(DW_COLOR_ERROR);
906+
dw_printf ("Error getting GPIO %d value\n", save_audio_config_p->achan[chan].ictrl[it].gpio);
907+
dw_printf ("%s\n", strerror(e));
908+
}
909+
close (fd);
910+
911+
if (atoi(vtemp) != save_audio_config_p->achan[chan].ictrl[it].invert) {
912+
return 1;
913+
}
914+
else {
915+
return 0;
916+
}
917+
}
918+
#endif
919+
920+
return -1; /* Method was none, or something went wrong */
921+
}
847922

848923
/*-------------------------------------------------------------------
849924
*

ptt.h

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ void ptt_set (int octype, int chan, int ptt);
1515

1616
void ptt_term (void);
1717

18+
int get_input (int it, int chan);
1819

1920
#endif
2021

0 commit comments

Comments
 (0)