Skip to content

Commit 64f9313

Browse files
committed
TXINH config changes
1 parent 1376c0c commit 64f9313

File tree

2 files changed

+56
-0
lines changed

2 files changed

+56
-0
lines changed

audio.h

+10
Original file line numberDiff line numberDiff line change
@@ -201,6 +201,16 @@ struct audio_s {
201201

202202
} octrl[NUM_OCTYPES];
203203

204+
#define ICTYPE_TXINH 0
205+
206+
#define NUM_ICTYPES 1
207+
208+
struct {
209+
int enable; /* should we bother checking this input? */
210+
int gpio; /* GPIO number */
211+
int invert; /* 1 = active low */
212+
} ictrl[NUM_ICTYPES];
213+
204214
/* Transmit timing. */
205215

206216
int dwait; /* First wait extra time for receiver squelch. */

config.c

+46
Original file line numberDiff line numberDiff line change
@@ -1598,6 +1598,52 @@ void config_init (char *fname, struct audio_s *p_audio_config,
15981598

15991599
} /* end of PTT */
16001600

1601+
/*
1602+
* INPUTS
1603+
*
1604+
* TXINH - TX holdoff input
1605+
*
1606+
* xxx GPIO [-]gpio-num (only type supported yet)
1607+
*/
1608+
1609+
else if (strcasecmp(t, "TXINH") == 0) {
1610+
int it;
1611+
char itname[8];
1612+
1613+
it = ICTYPE_TXINH;
1614+
strlcpy (itname, "TXINH", sizeof(itname));
1615+
1616+
t = split(NULL,0);
1617+
if (t == NULL) {
1618+
text_color_set(DW_COLOR_ERROR);
1619+
dw_printf ("Config file line %d: Missing input type name for %s command.\n", line, itname);
1620+
continue;
1621+
}
1622+
1623+
if (strcasecmp(t, "GPIO") == 0) {
1624+
1625+
#if __WIN32__
1626+
text_color_set(DW_COLOR_ERROR);
1627+
dw_printf ("Config file line %d: %s with GPIO is only available on Linux.\n", line, itname);
1628+
#else
1629+
t = split(NULL,0);
1630+
if (t == NULL) {
1631+
text_color_set(DW_COLOR_ERROR);
1632+
dw_printf ("Config file line %d: Missing GPIO number for %s.\n", line, itname);
1633+
continue;
1634+
}
1635+
1636+
if (*t == '-') {
1637+
p_audio_config->achan[channel].ictrl[it].gpio = atoi(t+1);
1638+
p_audio_config->achan[channel].ictrl[it].invert = 1;
1639+
}
1640+
else {
1641+
p_audio_config->achan[channel].ictrl[it].gpio = atoi(t);
1642+
p_audio_config->achan[channel].ictrl[it].invert = 0;
1643+
}
1644+
#endif
1645+
}
1646+
}
16011647

16021648
/*
16031649
* DWAIT - Extra delay for receiver squelch.

0 commit comments

Comments
 (0)