79
79
80
80
81
81
82
- //#include "tq.h"
83
-
84
82
/*
85
83
* Conversions from various units to meters.
86
84
* There is some disagreement about the exact values for some of these.
@@ -902,7 +900,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
902
900
903
901
p_misc_config -> maxframe_extended = AX25_K_MAXFRAME_EXTENDED_DEFAULT ; /* Max frames to send before ACK. mod 128 "Window" size. */
904
902
905
- p_misc_config -> maxv22 = AX25_N2_RETRY_DEFAULT / 2 ; /* Max SABME before falling back to SABM. */
903
+ p_misc_config -> maxv22 = AX25_N2_RETRY_DEFAULT / 3 ; /* Max SABME before falling back to SABM. */
906
904
p_misc_config -> v20_addrs = NULL ; /* Go directly to v2.0 for stations listed. */
907
905
p_misc_config -> v20_count = 0 ;
908
906
p_misc_config -> noxid_addrs = NULL ; /* Don't send XID to these stations. */
@@ -1592,7 +1590,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1592
1590
/*
1593
1591
* FIX_BITS n [ APRS | AX25 | NONE ] [ PASSALL ]
1594
1592
*
1595
- * - Attempt to fix frames with bad FCS.
1593
+ * - Attempt to fix frames with bad FCS.
1594
+ * - n is maximum number of bits to attempt fixing.
1595
+ * - Optional sanity check & allow everything even with bad FCS.
1596
1596
*/
1597
1597
1598
1598
else if (strcasecmp (t , "FIX_BITS" ) == 0 ) {
@@ -1614,16 +1614,10 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1614
1614
line , n , p_audio_config -> achan [channel ].fix_bits );
1615
1615
}
1616
1616
1617
- if (p_audio_config -> achan [channel ].fix_bits > RETRY_INVERT_SINGLE ) {
1617
+ if (p_audio_config -> achan [channel ].fix_bits > DEFAULT_FIX_BITS ) {
1618
1618
text_color_set (DW_COLOR_INFO );
1619
1619
dw_printf ("Line %d: Using a FIX_BITS value greater than %d is not recommended for normal operation.\n" ,
1620
- line , RETRY_INVERT_SINGLE );
1621
- }
1622
-
1623
- if (p_audio_config -> achan [channel ].fix_bits >= RETRY_INVERT_TWO_SEP ) {
1624
- text_color_set (DW_COLOR_INFO );
1625
- dw_printf ("Line %d: Using a FIX_BITS value of %d will waste a lot of CPU power and produce wrong results.\n" ,
1626
- line , RETRY_INVERT_TWO_SEP );
1620
+ line , DEFAULT_FIX_BITS );
1627
1621
}
1628
1622
1629
1623
t = split (NULL ,0 );
@@ -2209,6 +2203,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2209
2203
dw_printf ("Config file: Missing FROM-channel on line %d.\n" , line );
2210
2204
continue ;
2211
2205
}
2206
+ if ( ! alldigits (t )) {
2207
+ text_color_set (DW_COLOR_ERROR );
2208
+ dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n" ,
2209
+ line , t );
2210
+ continue ;
2211
+ }
2212
2212
from_chan = atoi (t );
2213
2213
if (from_chan < 0 || from_chan >= MAX_CHANS ) {
2214
2214
text_color_set (DW_COLOR_ERROR );
@@ -2233,6 +2233,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2233
2233
dw_printf ("Config file: Missing TO-channel on line %d.\n" , line );
2234
2234
continue ;
2235
2235
}
2236
+ if ( ! alldigits (t )) {
2237
+ text_color_set (DW_COLOR_ERROR );
2238
+ dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n" ,
2239
+ line , t );
2240
+ continue ;
2241
+ }
2236
2242
to_chan = atoi (t );
2237
2243
if (to_chan < 0 || to_chan >= MAX_CHANS ) {
2238
2244
text_color_set (DW_COLOR_ERROR );
@@ -2317,7 +2323,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2317
2323
}
2318
2324
2319
2325
/*
2320
- * DEDUPE - Time to suppress digipeating of duplicate packets.
2326
+ * DEDUPE - Time to suppress digipeating of duplicate APRS packets.
2321
2327
*/
2322
2328
2323
2329
else if (strcasecmp (t , "DEDUPE" ) == 0 ) {
@@ -2354,6 +2360,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2354
2360
dw_printf ("Config file: Missing FROM-channel on line %d.\n" , line );
2355
2361
continue ;
2356
2362
}
2363
+ if ( ! alldigits (t )) {
2364
+ text_color_set (DW_COLOR_ERROR );
2365
+ dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n" ,
2366
+ line , t );
2367
+ continue ;
2368
+ }
2357
2369
from_chan = atoi (t );
2358
2370
if (from_chan < 0 || from_chan >= MAX_CHANS ) {
2359
2371
text_color_set (DW_COLOR_ERROR );
@@ -2377,6 +2389,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2377
2389
dw_printf ("Config file: Missing TO-channel on line %d.\n" , line );
2378
2390
continue ;
2379
2391
}
2392
+ if ( ! alldigits (t )) {
2393
+ text_color_set (DW_COLOR_ERROR );
2394
+ dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n" ,
2395
+ line , t );
2396
+ continue ;
2397
+ }
2380
2398
to_chan = atoi (t );
2381
2399
if (to_chan < 0 || to_chan >= MAX_CHANS ) {
2382
2400
text_color_set (DW_COLOR_ERROR );
@@ -2416,6 +2434,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2416
2434
dw_printf ("Config file: Missing FROM-channel on line %d.\n" , line );
2417
2435
continue ;
2418
2436
}
2437
+ if ( ! alldigits (t )) {
2438
+ text_color_set (DW_COLOR_ERROR );
2439
+ dw_printf ("Config file, line %d: '%s' is not allowed for FROM-channel. It must be a number.\n" ,
2440
+ line , t );
2441
+ continue ;
2442
+ }
2419
2443
from_chan = atoi (t );
2420
2444
if (from_chan < 0 || from_chan >= MAX_CHANS ) {
2421
2445
text_color_set (DW_COLOR_ERROR );
@@ -2443,6 +2467,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2443
2467
dw_printf ("Config file: Missing TO-channel on line %d.\n" , line );
2444
2468
continue ;
2445
2469
}
2470
+ if ( ! alldigits (t )) {
2471
+ text_color_set (DW_COLOR_ERROR );
2472
+ dw_printf ("Config file, line %d: '%s' is not allowed for TO-channel. It must be a number.\n" ,
2473
+ line , t );
2474
+ continue ;
2475
+ }
2446
2476
to_chan = atoi (t );
2447
2477
if (to_chan < 0 || to_chan >= MAX_CHANS ) {
2448
2478
text_color_set (DW_COLOR_ERROR );
0 commit comments