19
19
20
20
#define CONFIG_C 1 // influences behavior of aprs_tt.h
21
21
22
-
23
- // #define DEBUG 1
22
+ // FIXME:
23
+ #define DEBUG 1
24
24
25
25
/*------------------------------------------------------------------
26
26
*
@@ -716,6 +716,7 @@ static void rtfm()
716
716
dw_printf (" stable release: https://github.com/wb2osz/direwolf/tree/master/doc\n" );
717
717
dw_printf (" development version: https://github.com/wb2osz/direwolf/tree/dev/doc\n" );
718
718
dw_printf (" additional topics: https://github.com/wb2osz/direwolf-doc\n" );
719
+ dw_printf (" general APRS info: https://how.aprs.works\n" );
719
720
}
720
721
721
722
void config_init (char * fname , struct audio_s * p_audio_config ,
@@ -763,12 +764,17 @@ void config_init (char *fname, struct audio_s *p_audio_config,
763
764
764
765
p_audio_config -> adev [0 ].defined = 2 ; // 2 means it was done by default and not the user's config file.
765
766
767
+ // MAX_TOTAL_CHANS
766
768
for (channel = 0 ; channel < MAX_TOTAL_CHANS ; channel ++ ) {
767
- int ot , it ;
768
-
769
769
p_audio_config -> chan_medium [channel ] = MEDIUM_NONE ; /* One or both channels will be */
770
770
/* set to radio when corresponding */
771
771
/* audio device is defined. */
772
+ }
773
+
774
+ // MAX_RADIO_CHANS for achan[]
775
+ for (channel = 0 ; channel < MAX_RADIO_CHANS ; channel ++ ) {
776
+ int ot , it ;
777
+
772
778
p_audio_config -> achan [channel ].modem_type = MODEM_AFSK ;
773
779
p_audio_config -> achan [channel ].v26_alternative = V26_UNSPECIFIED ;
774
780
p_audio_config -> achan [channel ].mark_freq = DEFAULT_MARK_FREQ ; /* -m option */
@@ -980,8 +986,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
980
986
if (fp == NULL ) {
981
987
// TODO: not exactly right for all situations.
982
988
text_color_set (DW_COLOR_ERROR );
983
- dw_printf ("ERROR - Could not open config file %s\n" , filepath );
989
+ dw_printf ("ERROR - Could not open configuration file %s\n" , filepath );
984
990
dw_printf ("Try using -c command line option for alternate location.\n" );
991
+ #ifndef __WIN32__
992
+ dw_printf ("A sample direwolf.conf file should be found in one of:\n" );
993
+ dw_printf (" /usr/local/share/doc/direwolf/conf/\n" );
994
+ dw_printf (" /usr/share/doc/direwolf/conf/\n" );
995
+ #endif
985
996
rtfm ();
986
997
exit (EXIT_FAILURE );
987
998
}
@@ -1423,6 +1434,12 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1423
1434
*/
1424
1435
1425
1436
else if (strcasecmp (t , "MODEM" ) == 0 ) {
1437
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
1438
+ text_color_set (DW_COLOR_ERROR );
1439
+ dw_printf ("Line %d: MODEM can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
1440
+ continue ;
1441
+ }
1442
+
1426
1443
int n ;
1427
1444
t = split (NULL ,0 );
1428
1445
if (t == NULL ) {
@@ -1758,6 +1775,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1758
1775
1759
1776
1760
1777
else if (strcasecmp (t , "DTMF" ) == 0 ) {
1778
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
1779
+ text_color_set (DW_COLOR_ERROR );
1780
+ dw_printf ("Line %d: DTMF can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
1781
+ continue ;
1782
+ }
1761
1783
1762
1784
p_audio_config -> achan [channel ].dtmf_decode = DTMF_DECODE_ON ;
1763
1785
@@ -1773,6 +1795,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1773
1795
*/
1774
1796
1775
1797
else if (strcasecmp (t , "FIX_BITS" ) == 0 ) {
1798
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
1799
+ text_color_set (DW_COLOR_ERROR );
1800
+ dw_printf ("Line %d: FIX_BITS can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
1801
+ continue ;
1802
+ }
1776
1803
int n ;
1777
1804
t = split (NULL ,0 );
1778
1805
if (t == NULL ) {
@@ -1851,6 +1878,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
1851
1878
*/
1852
1879
1853
1880
else if (strcasecmp (t , "PTT" ) == 0 || strcasecmp (t , "DCD" ) == 0 || strcasecmp (t , "CON" ) == 0 ) {
1881
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
1882
+ text_color_set (DW_COLOR_ERROR );
1883
+ dw_printf ("Line %d: PTT can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
1884
+ continue ;
1885
+ }
1854
1886
int ot ;
1855
1887
char otname [8 ];
1856
1888
@@ -2222,6 +2254,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2222
2254
*/
2223
2255
2224
2256
else if (strcasecmp (t , "TXINH" ) == 0 ) {
2257
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2258
+ text_color_set (DW_COLOR_ERROR );
2259
+ dw_printf ("Line %d: TXINH can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2260
+ continue ;
2261
+ }
2225
2262
char itname [8 ];
2226
2263
2227
2264
strlcpy (itname , "TXINH" , sizeof (itname ));
@@ -2268,6 +2305,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2268
2305
*/
2269
2306
2270
2307
else if (strcasecmp (t , "DWAIT" ) == 0 ) {
2308
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2309
+ text_color_set (DW_COLOR_ERROR );
2310
+ dw_printf ("Line %d: DWAIT can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2311
+ continue ;
2312
+ }
2271
2313
int n ;
2272
2314
t = split (NULL ,0 );
2273
2315
if (t == NULL ) {
@@ -2292,6 +2334,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2292
2334
*/
2293
2335
2294
2336
else if (strcasecmp (t , "SLOTTIME" ) == 0 ) {
2337
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2338
+ text_color_set (DW_COLOR_ERROR );
2339
+ dw_printf ("Line %d: SLOTTIME can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2340
+ continue ;
2341
+ }
2295
2342
int n ;
2296
2343
t = split (NULL ,0 );
2297
2344
if (t == NULL ) {
@@ -2322,6 +2369,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2322
2369
*/
2323
2370
2324
2371
else if (strcasecmp (t , "PERSIST" ) == 0 ) {
2372
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2373
+ text_color_set (DW_COLOR_ERROR );
2374
+ dw_printf ("Line %d: PERSIST can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2375
+ continue ;
2376
+ }
2325
2377
int n ;
2326
2378
t = split (NULL ,0 );
2327
2379
if (t == NULL ) {
@@ -2349,6 +2401,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2349
2401
*/
2350
2402
2351
2403
else if (strcasecmp (t , "TXDELAY" ) == 0 ) {
2404
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2405
+ text_color_set (DW_COLOR_ERROR );
2406
+ dw_printf ("Line %d: TXDELAY can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2407
+ continue ;
2408
+ }
2352
2409
int n ;
2353
2410
t = split (NULL ,0 );
2354
2411
if (t == NULL ) {
@@ -2390,6 +2447,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2390
2447
*/
2391
2448
2392
2449
else if (strcasecmp (t , "TXTAIL" ) == 0 ) {
2450
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2451
+ text_color_set (DW_COLOR_ERROR );
2452
+ dw_printf ("Line %d: TXTAIL can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2453
+ continue ;
2454
+ }
2393
2455
int n ;
2394
2456
t = split (NULL ,0 );
2395
2457
if (t == NULL ) {
@@ -2430,6 +2492,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2430
2492
*/
2431
2493
else if (strcasecmp (t , "FULLDUP" ) == 0 ) {
2432
2494
2495
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2496
+ text_color_set (DW_COLOR_ERROR );
2497
+ dw_printf ("Line %d: FULLDUP can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2498
+ continue ;
2499
+ }
2433
2500
t = split (NULL ,0 );
2434
2501
if (t == NULL ) {
2435
2502
text_color_set (DW_COLOR_ERROR );
@@ -2457,6 +2524,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2457
2524
2458
2525
else if (strcasecmp (t , "SPEECH" ) == 0 ) {
2459
2526
2527
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2528
+ text_color_set (DW_COLOR_ERROR );
2529
+ dw_printf ("Line %d: SPEECH can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2530
+ continue ;
2531
+ }
2460
2532
t = split (NULL ,0 );
2461
2533
if (t == NULL ) {
2462
2534
text_color_set (DW_COLOR_ERROR );
@@ -2488,6 +2560,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2488
2560
*/
2489
2561
2490
2562
else if (strcasecmp (t , "FX25TX" ) == 0 ) {
2563
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2564
+ text_color_set (DW_COLOR_ERROR );
2565
+ dw_printf ("Line %d: FX25TX can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2566
+ continue ;
2567
+ }
2491
2568
int n ;
2492
2569
t = split (NULL ,0 );
2493
2570
if (t == NULL ) {
@@ -2510,7 +2587,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2510
2587
}
2511
2588
2512
2589
/*
2513
- * FX25AUTO n - Enable Automatic use of FX.25 for connected mode.
2590
+ * FX25AUTO n - Enable Automatic use of FX.25 for connected mode. *** Not Implemented ***
2514
2591
* Automatically enable, for that session only, when an identical
2515
2592
* frame is sent more than this number of times.
2516
2593
* Default 5 based on half of default RETRY.
@@ -2519,6 +2596,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2519
2596
*/
2520
2597
2521
2598
else if (strcasecmp (t , "FX25AUTO" ) == 0 ) {
2599
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2600
+ text_color_set (DW_COLOR_ERROR );
2601
+ dw_printf ("Line %d: FX25AUTO can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2602
+ continue ;
2603
+ }
2522
2604
int n ;
2523
2605
t = split (NULL ,0 );
2524
2606
if (t == NULL ) {
@@ -2550,6 +2632,11 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2550
2632
2551
2633
else if (strcasecmp (t , "IL2PTX" ) == 0 ) {
2552
2634
2635
+ if (channel < 0 || channel >= MAX_RADIO_CHANS ) {
2636
+ text_color_set (DW_COLOR_ERROR );
2637
+ dw_printf ("Line %d: IL2PTX can only be used with radio channel 0 - %d.\n" , line , MAX_RADIO_CHANS - 1 );
2638
+ continue ;
2639
+ }
2553
2640
p_audio_config -> achan [channel ].layer2_xmit = LAYER2_IL2P ;
2554
2641
p_audio_config -> achan [channel ].il2p_max_fec = 1 ;
2555
2642
p_audio_config -> achan [channel ].il2p_invert_polarity = 0 ;
0 commit comments