Skip to content

Commit ad12fa8

Browse files
committed
Replace channel valid boolean with more versatile enum.
1 parent d6ea439 commit ad12fa8

19 files changed

+263
-116
lines changed

atest.c

+4-2
Original file line numberDiff line numberDiff line change
@@ -564,8 +564,10 @@ int main (int argc, char *argv[])
564564
my_audio_config.adev[0].bits_per_sample = format.wbitspersample;
565565
my_audio_config.adev[0].num_channels = format.nchannels;
566566

567-
my_audio_config.achan[0].valid = 1;
568-
if (format.nchannels == 2) my_audio_config.achan[1].valid = 1;
567+
my_audio_config.achan[0].medium = MEDIUM_RADIO;
568+
if (format.nchannels == 2) {
569+
my_audio_config.achan[1].medium = MEDIUM_RADIO;
570+
}
569571

570572
text_color_set(DW_COLOR_INFO);
571573
dw_printf ("%d samples per second. %d bits per sample. %d audio channels.\n",

audio.h

+22-3
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ typedef enum retry_e {
5353
RETRY_INVERT_TWO_SEP=4,
5454
RETRY_MAX = 5} retry_t;
5555

56+
// Type of communication medium associated with the channel.
57+
58+
enum medium_e { MEDIUM_NONE = 0, // Channel is not valid for use.
59+
MEDIUM_RADIO, // Internal modem for radio.
60+
MEDIUM_IGATE, // Access IGate as ordinary channel.
61+
MEDIUM_NETTNC }; // Remote network TNC. (possible future)
62+
5663

5764
typedef enum sanity_e { SANITY_APRS, SANITY_AX25, SANITY_NONE } sanity_t;
5865

@@ -102,19 +109,31 @@ struct audio_s {
102109
/* Command line option uses "strftime" format string. */
103110

104111

105-
/* Properties for each audio channel, common to receive and transmit. */
112+
/* Properties for each channel, common to receive and transmit. */
106113
/* Can be different for each radio channel. */
107114

115+
/* originally a "channel" was always connected to an internal modem. */
116+
/* In version 1.6, this is generalized so that a channel (as seen by client application) */
117+
/* can be connected to something else. Initially, this will allow application */
118+
/* access to the IGate. Later we might have network TNCs or other internal functions. */
119+
108120

109121
struct achan_param_s {
110122

111-
int valid; /* Is this channel valid? */
123+
// Originally there was a boolean, called "valid", to indicate that the
124+
// channel is valid. This has been replaced with the new "medium" which
125+
// will allow channels to correspond to things other than internal modems.
126+
127+
enum medium_e medium; // MEDIUM_NONE for invalid.
128+
// MEDIUM_RADIO for internal modem. (only possibility earlier)
129+
// MEDIUM_IGATE allows application access to IGate.
130+
112131

113132
char mycall[AX25_MAX_ADDR_LEN]; /* Call associated with this radio channel. */
114133
/* Could all be the same or different. */
115134

116135

117-
enum modem_t { MODEM_AFSK, MODEM_BASEBAND, MODEM_SCRAMBLE, MODEM_QPSK, MODEM_8PSK, MODEM_OFF } modem_type;
136+
enum modem_t { MODEM_AFSK, MODEM_BASEBAND, MODEM_SCRAMBLE, MODEM_QPSK, MODEM_8PSK, MODEM_OFF, MODEM_16_QAM, MODEM_64_QAM } modem_type;
118137

119138
/* Usual AFSK. */
120139
/* Baseband signal. Not used yet. */

beacon.c

+2-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,8 @@ void beacon_init (struct audio_s *pmodem, struct misc_config_s *pconfig, struct
183183

184184
if (chan < 0) chan = 0; /* For IGate, use channel 0 call. */
185185

186-
if (g_modem_config_p->achan[chan].valid) {
186+
if (g_modem_config_p->achan[chan].medium == MEDIUM_RADIO ||
187+
g_modem_config_p->achan[chan].medium == MEDIUM_NETTNC) {
187188

188189
if (strlen(g_modem_config_p->achan[chan].mycall) > 0 &&
189190
strcasecmp(g_modem_config_p->achan[chan].mycall, "N0CALL") != 0 &&

cdigipeater.c

+3-1
Original file line numberDiff line numberDiff line change
@@ -129,8 +129,10 @@ void cdigipeater (int from_chan, packet_t pp)
129129
{
130130
int to_chan;
131131

132+
// Connected mode is allowed only for channels with internal modem.
133+
// It probably wouldn't matter for digipeating but let's keep that rule simple and consistent.
132134

133-
if ( from_chan < 0 || from_chan >= MAX_CHANS || ( ! save_audio_config_p->achan[from_chan].valid) ) {
135+
if ( from_chan < 0 || from_chan >= MAX_CHANS || save_audio_config_p->achan[from_chan].medium != MEDIUM_RADIO) {
134136
text_color_set(DW_COLOR_ERROR);
135137
dw_printf ("cdigipeater: Did not expect to receive on invalid channel %d.\n", from_chan);
136138
return;

0 commit comments

Comments
 (0)