Skip to content

Commit b68039d

Browse files
committed
Merge branch 'txinh' of git://github.com/ab0tj/direwolf into ab0tj-txinh
Conflicts: hdlc_rec.c modified: atest.c modified: audio.h modified: config.c modified: hdlc_rec.c modified: ptt.c modified: ptt.h
2 parents 178375f + d9ca8cd commit b68039d

File tree

6 files changed

+268
-105
lines changed

6 files changed

+268
-105
lines changed

atest.c

+4
Original file line numberDiff line numberDiff line change
@@ -705,6 +705,10 @@ void ptt_set (int ot, int chan, int ptt_signal)
705705
return;
706706
}
707707

708+
int get_input (int it, int chan)
709+
{
710+
return -1;
711+
}
708712

709713
static void usage (void) {
710714

audio.h

+10
Original file line numberDiff line numberDiff line change
@@ -191,6 +191,16 @@ struct audio_s {
191191

192192
} octrl[NUM_OCTYPES];
193193

194+
#define ICTYPE_TXINH 0
195+
196+
#define NUM_ICTYPES 1
197+
198+
struct {
199+
ptt_method_t method; /* none, serial port, GPIO, LPT. */
200+
int gpio; /* GPIO number */
201+
int invert; /* 1 = active low */
202+
} ictrl[NUM_ICTYPES];
203+
194204
/* Transmit timing. */
195205

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

config.c

+47
Original file line numberDiff line numberDiff line change
@@ -1610,6 +1610,53 @@ void config_init (char *fname, struct audio_s *p_audio_config,
16101610

16111611
} /* end of PTT */
16121612

1613+
/*
1614+
* INPUTS
1615+
*
1616+
* TXINH - TX holdoff input
1617+
*
1618+
* xxx GPIO [-]gpio-num (only type supported yet)
1619+
*/
1620+
1621+
else if (strcasecmp(t, "TXINH") == 0) {
1622+
int it;
1623+
char itname[8];
1624+
1625+
it = ICTYPE_TXINH;
1626+
strlcpy (itname, "TXINH", sizeof(itname));
1627+
1628+
t = split(NULL,0);
1629+
if (t == NULL) {
1630+
text_color_set(DW_COLOR_ERROR);
1631+
dw_printf ("Config file line %d: Missing input type name for %s command.\n", line, itname);
1632+
continue;
1633+
}
1634+
1635+
if (strcasecmp(t, "GPIO") == 0) {
1636+
1637+
#if __WIN32__
1638+
text_color_set(DW_COLOR_ERROR);
1639+
dw_printf ("Config file line %d: %s with GPIO is only available on Linux.\n", line, itname);
1640+
#else
1641+
t = split(NULL,0);
1642+
if (t == NULL) {
1643+
text_color_set(DW_COLOR_ERROR);
1644+
dw_printf ("Config file line %d: Missing GPIO number for %s.\n", line, itname);
1645+
continue;
1646+
}
1647+
1648+
if (*t == '-') {
1649+
p_audio_config->achan[channel].ictrl[it].gpio = atoi(t+1);
1650+
p_audio_config->achan[channel].ictrl[it].invert = 1;
1651+
}
1652+
else {
1653+
p_audio_config->achan[channel].ictrl[it].gpio = atoi(t);
1654+
p_audio_config->achan[channel].ictrl[it].invert = 0;
1655+
}
1656+
p_audio_config->achan[channel].ictrl[it].method = PTT_METHOD_GPIO;
1657+
#endif
1658+
}
1659+
}
16131660

16141661
/*
16151662
* DWAIT - Extra delay for receiver squelch.

hdlc_rec.c

+6
Original file line numberDiff line numberDiff line change
@@ -626,17 +626,23 @@ void dcd_change (int chan, int subchan, int slice, int state)
626626
* at the same time. The channel is busy if ANY of them
627627
* thinks the channel is busy.
628628
*
629+
* Version 1.3: New option for input signal to inhibit transmit.
630+
*
629631
*--------------------------------------------------------------------*/
630632

631633
int hdlc_rec_data_detect_any (int chan)
632634
{
635+
633636
int sc;
634637
assert (chan >= 0 && chan < MAX_CHANS);
635638

636639
for (sc = 0; sc < num_subchan[chan]; sc++) {
637640
if (composite_dcd[chan][sc] != 0)
638641
return (1);
639642
}
643+
644+
if (get_input(ICTYPE_TXINH, chan) == 1) return (1);
645+
640646
return (0);
641647

642648
} /* end hdlc_rec_data_detect_any */

0 commit comments

Comments
 (0)