Skip to content

Commit e1e5be3

Browse files
committed
MAX_ADEVS==4 enabled debug output options.
1 parent debe703 commit e1e5be3

File tree

1 file changed

+7
-3
lines changed

1 file changed

+7
-3
lines changed

src/config.c

+7-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@
1919

2020
#define CONFIG_C 1 // influences behavior of aprs_tt.h
2121

22-
// FIXME:
23-
#define DEBUG 1
22+
23+
//#define DEBUG 1
2424

2525
/*------------------------------------------------------------------
2626
*
@@ -772,6 +772,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
772772
}
773773

774774
// MAX_RADIO_CHANS for achan[]
775+
// Maybe achan should be renamed to radiochan to make it clearer.
775776
for (channel=0; channel<MAX_RADIO_CHANS; channel++) {
776777
int ot, it;
777778

@@ -1235,6 +1236,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
12351236
* CHANNEL n - Set channel for channel-specific commands. Only for modem/radio channels.
12361237
*/
12371238

1239+
// TODO: allow full range so mycall can be set for network channels.
1240+
// Watch out for achan[] out of bounds.
1241+
12381242
else if (strcasecmp(t, "CHANNEL") == 0) {
12391243
int n;
12401244
t = split(NULL,0);
@@ -1434,12 +1438,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
14341438
*/
14351439

14361440
else if (strcasecmp(t, "MODEM") == 0) {
1441+
14371442
if (channel < 0 || channel >= MAX_RADIO_CHANS) {
14381443
text_color_set(DW_COLOR_ERROR);
14391444
dw_printf ("Line %d: MODEM can only be used with radio channel 0 - %d.\n", line, MAX_RADIO_CHANS-1);
14401445
continue;
14411446
}
1442-
14431447
int n;
14441448
t = split(NULL,0);
14451449
if (t == NULL) {

0 commit comments

Comments
 (0)