@@ -2397,10 +2397,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2397
2397
*/
2398
2398
2399
2399
/*
2400
- * DIGIPEAT from-chan to-chan alias-pattern wide-pattern [ OFF|DROP|MARK|TRACE | NOID =alias ]
2400
+ * DIGIPEAT from-chan to-chan alias-pattern wide-pattern [ OFF|DROP|MARK|TRACE | ATGP =alias ]
2401
2401
*
2402
- * NOID is an ugly hack for the specific need of ATGP which needs more that 8 digipeaters.
2403
- * The via path starts out as HOP7-7,HOP7-7 and we do not want tracing so it does not fill up.
2402
+ * ATGP is an ugly hack for the specific need of ATGP which needs more that 8 digipeaters.
2404
2403
* DO NOT put this in the User Guide. On a need to know basis.
2405
2404
*/
2406
2405
@@ -2527,8 +2526,8 @@ void config_init (char *fname, struct audio_s *p_audio_config,
2527
2526
p_digi_config -> preempt [from_chan ][to_chan ] = PREEMPT_TRACE ;
2528
2527
t = split (NULL ,0 );
2529
2528
}
2530
- else if (strncasecmp (t , "NOID =" , 5 ) == 0 ) {
2531
- strlcpy (p_digi_config -> noid [from_chan ][to_chan ], t + 5 , sizeof (p_digi_config -> noid [from_chan ][to_chan ]));;
2529
+ else if (strncasecmp (t , "ATGP =" , 5 ) == 0 ) {
2530
+ strlcpy (p_digi_config -> atgp [from_chan ][to_chan ], t + 5 , sizeof (p_digi_config -> atgp [from_chan ][to_chan ]));;
2532
2531
t = split (NULL ,0 );
2533
2532
}
2534
2533
}
@@ -3221,7 +3220,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
3221
3220
t = split (NULL ,0 );
3222
3221
if (t == NULL ) {
3223
3222
text_color_set (DW_COLOR_ERROR );
3224
- dw_printf ("Line %d: Missing latitude for TTGRID command.\n" , line );
3223
+ dw_printf ("Line %d: Missing minimum latitude for TTGRID command.\n" , line );
3225
3224
continue ;
3226
3225
}
3227
3226
tl -> grid .lat0 = parse_ll (t ,LAT ,line );
@@ -3231,7 +3230,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
3231
3230
t = split (NULL ,0 );
3232
3231
if (t == NULL ) {
3233
3232
text_color_set (DW_COLOR_ERROR );
3234
- dw_printf ("Line %d: Missing longitude for TTGRID command.\n" , line );
3233
+ dw_printf ("Line %d: Missing minimum longitude for TTGRID command.\n" , line );
3235
3234
continue ;
3236
3235
}
3237
3236
tl -> grid .lon0 = parse_ll (t ,LON ,line );
@@ -3241,7 +3240,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
3241
3240
t = split (NULL ,0 );
3242
3241
if (t == NULL ) {
3243
3242
text_color_set (DW_COLOR_ERROR );
3244
- dw_printf ("Line %d: Missing latitude for TTGRID command.\n" , line );
3243
+ dw_printf ("Line %d: Missing maximum latitude for TTGRID command.\n" , line );
3245
3244
continue ;
3246
3245
}
3247
3246
tl -> grid .lat9 = parse_ll (t ,LAT ,line );
@@ -3251,13 +3250,16 @@ void config_init (char *fname, struct audio_s *p_audio_config,
3251
3250
t = split (NULL ,0 );
3252
3251
if (t == NULL ) {
3253
3252
text_color_set (DW_COLOR_ERROR );
3254
- dw_printf ("Line %d: Missing longitude for TTGRID command.\n" , line );
3253
+ dw_printf ("Line %d: Missing maximum longitude for TTGRID command.\n" , line );
3255
3254
continue ;
3256
3255
}
3257
- tl -> grid .lon0 = parse_ll (t ,LON ,line );
3256
+ tl -> grid .lon9 = parse_ll (t ,LON ,line );
3258
3257
3259
3258
/* temp debugging */
3260
3259
3260
+ // dw_printf ("CONFIG TTGRID min %f %f\n", tl->grid.lat0, tl->grid.lon0);
3261
+ // dw_printf ("CONFIG TTGRID max %f %f\n", tl->grid.lat9, tl->grid.lon9);
3262
+
3261
3263
//for (j=0; j<p_tt_config->ttloc_len; j++) {
3262
3264
// dw_printf ("debug ttloc %d/%d %s\n", j, p_tt_config->ttloc_size,
3263
3265
// p_tt_config->ttloc_ptr[j].pattern);
0 commit comments