@@ -2204,6 +2204,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2204
2204
2205
2205
/*
2206
2206
* DWAIT n - Extra delay for receiver squelch. n = 10 mS units.
2207
+ *
2208
+ * Why did I do this? Just add more to TXDELAY.
2209
+ * Now undocumented in User Guide. Might disappear someday.
2207
2210
*/
2208
2211
2209
2212
else if (strcasecmp (t , "DWAIT" ) == 0 ) {
@@ -2239,14 +2242,20 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2239
2242
continue ;
2240
2243
}
2241
2244
n = atoi (t );
2242
- if (n >= 0 && n <= 255 ) {
2245
+ if (n >= 5 && n < 50 ) {
2246
+ // 0 = User has no clue. This would be no delay.
2247
+ // 10 = Default.
2248
+ // 50 = Half second. User might think it is mSec and use 100.
2243
2249
p_audio_config -> achan [channel ].slottime = n ;
2244
2250
}
2245
2251
else {
2246
2252
p_audio_config -> achan [channel ].slottime = DEFAULT_SLOTTIME ;
2247
2253
text_color_set (DW_COLOR_ERROR );
2248
- dw_printf ("Line %d: Invalid delay time for persist algorithm. Using default %d.\n" ,
2254
+ dw_printf ("Line %d: Invalid delay time for persist algorithm. Using default %d.\n" ,
2249
2255
line , p_audio_config -> achan [channel ].slottime );
2256
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2257
+ dw_printf ("section, to understand what this means.\n" );
2258
+ dw_printf ("Why don't you just use the default?\n" );
2250
2259
}
2251
2260
}
2252
2261
@@ -2263,14 +2272,17 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2263
2272
continue ;
2264
2273
}
2265
2274
n = atoi (t );
2266
- if (n >= 0 && n <= 255 ) {
2275
+ if (n >= 5 && n <= 250 ) {
2267
2276
p_audio_config -> achan [channel ].persist = n ;
2268
2277
}
2269
2278
else {
2270
2279
p_audio_config -> achan [channel ].persist = DEFAULT_PERSIST ;
2271
2280
text_color_set (DW_COLOR_ERROR );
2272
- dw_printf ("Line %d: Invalid probability for persist algorithm. Using default %d.\n" ,
2281
+ dw_printf ("Line %d: Invalid probability for persist algorithm. Using default %d.\n" ,
2273
2282
line , p_audio_config -> achan [channel ].persist );
2283
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2284
+ dw_printf ("section, to understand what this means.\n" );
2285
+ dw_printf ("Why don't you just use the default?\n" );
2274
2286
}
2275
2287
}
2276
2288
@@ -2289,17 +2301,21 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2289
2301
n = atoi (t );
2290
2302
if (n >= 0 && n <= 255 ) {
2291
2303
text_color_set (DW_COLOR_ERROR );
2292
- if (n == 0 ) {
2293
- dw_printf ("Line %d: Setting TXDELAY to 0 is a REALLY BAD idea if you want other stations to hear you.\n" ,
2294
- line );
2295
- dw_printf ("Line %d: See User Guide, \"Radio Channel - Transmit Timing\" for an explanation.\n" ,
2304
+ if (n < 10 ) {
2305
+ dw_printf ("Line %d: Setting TXDELAY this small is a REALLY BAD idea if you want other stations to hear you.\n" ,
2296
2306
line );
2307
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2308
+ dw_printf ("section, to understand what this means.\n" );
2309
+ dw_printf ("Why don't you just use the default rather than reducing reliability?\n" );
2297
2310
}
2298
- if (n >= 100 ) {
2311
+ else if (n >= 100 ) {
2299
2312
dw_printf ("Line %d: Keeping with tradition, going back to the 1980s, TXDELAY is in 10 millisecond units.\n" ,
2300
2313
line );
2301
2314
dw_printf ("Line %d: The value %d would be %.3f seconds which seems rather excessive. Are you sure you want that?\n" ,
2302
2315
line , n , (double )n * 10. / 1000. );
2316
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2317
+ dw_printf ("section, to understand what this means.\n" );
2318
+ dw_printf ("Why don't you just use the default?\n" );
2303
2319
}
2304
2320
p_audio_config -> achan [channel ].txdelay = n ;
2305
2321
}
@@ -2325,24 +2341,28 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2325
2341
}
2326
2342
n = atoi (t );
2327
2343
if (n >= 0 && n <= 255 ) {
2328
- if (n == 0 ) {
2329
- dw_printf ("Line %d: Setting TXTAIL to 0 is a REALLY BAD idea if you want other stations to hear you.\n" ,
2330
- line );
2331
- dw_printf ("Line %d: See User Guide, \"Radio Channel - Transmit Timing\" for an explanation.\n" ,
2344
+ if (n < 5 ) {
2345
+ dw_printf ("Line %d: Setting TXTAIL that small is a REALLY BAD idea if you want other stations to hear you.\n" ,
2332
2346
line );
2347
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2348
+ dw_printf ("section, to understand what this means.\n" );
2349
+ dw_printf ("Why don't you just use the default rather than reducing reliability?\n" );
2333
2350
}
2334
- if (n >= 50 ) {
2351
+ else if (n >= 50 ) {
2335
2352
dw_printf ("Line %d: Keeping with tradition, going back to the 1980s, TXTAIL is in 10 millisecond units.\n" ,
2336
2353
line );
2337
2354
dw_printf ("Line %d: The value %d would be %.3f seconds which seems rather excessive. Are you sure you want that?\n" ,
2338
2355
line , n , (double )n * 10. / 1000. );
2356
+ dw_printf ("Read the Dire Wolf User Guide, \"Radio Channel - Transmit Timing\"\n" );
2357
+ dw_printf ("section, to understand what this means.\n" );
2358
+ dw_printf ("Why don't you just use the default?\n" );
2339
2359
}
2340
2360
p_audio_config -> achan [channel ].txtail = n ;
2341
2361
}
2342
2362
else {
2343
2363
p_audio_config -> achan [channel ].txtail = DEFAULT_TXTAIL ;
2344
2364
text_color_set (DW_COLOR_ERROR );
2345
- dw_printf ("Line %d: Invalid time for transmit timing. Using %d.\n" ,
2365
+ dw_printf ("Line %d: Invalid time for transmit timing. Using %d.\n" ,
2346
2366
line , p_audio_config -> achan [channel ].txtail );
2347
2367
}
2348
2368
}
@@ -2891,7 +2911,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2891
2911
dw_printf ("Config file: FILTER IG ... on line %d.\n" , line );
2892
2912
dw_printf ("Warning! Don't mess with IS>RF filtering unless you are an expert and have an unusual situation.\n" );
2893
2913
dw_printf ("Warning! The default is fine for nearly all situations.\n" );
2894
- dw_printf ("Warning! Be sure to read carefully and understand Successful-APRS-Gateway-Operation.pdf .\n" );
2914
+ dw_printf ("Warning! Be sure to read carefully and understand \" Successful-APRS-Gateway-Operation.pdf\" .\n" );
2895
2915
dw_printf ("Warning! If you insist, be sure to add \" | i/180 \" so you don't break messaging.\n" );
2896
2916
}
2897
2917
else {
@@ -2931,7 +2951,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2931
2951
dw_printf ("Warning! Don't mess with RF>IS filtering unless you are an expert and have an unusual situation.\n" );
2932
2952
dw_printf ("Warning! Expected behavior is for everything to go from RF to IS.\n" );
2933
2953
dw_printf ("Warning! The default is fine for nearly all situations.\n" );
2934
- dw_printf ("Warning! Be sure to read carefully and understand Successful-APRS-Gateway-Operation.pdf .\n" );
2954
+ dw_printf ("Warning! Be sure to read carefully and understand \" Successful-APRS-Gateway-Operation.pdf\" .\n" );
2935
2955
}
2936
2956
else {
2937
2957
to_chan = isdigit (* t ) ? atoi (t ) : -999 ;
@@ -4567,6 +4587,13 @@ void config_init (char *fname, struct audio_s *p_audio_config,
4567
4587
4568
4588
if (t != NULL && strlen (t ) > 0 ) {
4569
4589
p_igate_config -> t2_filter = strdup (t );
4590
+
4591
+ text_color_set (DW_COLOR_ERROR );
4592
+ dw_printf ("Line %d: Warning - IGFILTER is a rarely needed expert level feature.\n" , line );
4593
+ dw_printf ("If you don't have a special situation and a good understanding of\n" );
4594
+ dw_printf ("how this works, you probably should not be messing with it.\n" );
4595
+ dw_printf ("The default behavior is appropriate for most situations.\n" );
4596
+ dw_printf ("Please read \"Successful-APRS-IGate-Operation.pdf\".\n" );
4570
4597
}
4571
4598
}
4572
4599
0 commit comments