@@ -4987,7 +4987,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
4987
4987
4988
4988
text_color_set (DW_COLOR_ERROR );
4989
4989
dw_printf ("Config file, line %d: Old style 'BEACON' has been replaced with new commands.\n" , line );
4990
- dw_printf ("Use PBEACON, OBEACON, or CBEACON instead.\n" );
4990
+ dw_printf ("Use PBEACON, OBEACON, TBEACON, or CBEACON instead.\n" );
4991
4991
4992
4992
}
4993
4993
@@ -5002,6 +5002,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
5002
5002
* New style with keywords for options.
5003
5003
*/
5004
5004
5005
+ // TODO: maybe add proportional pathing so multiple beacon timing does not need to be manually constructed?
5006
+ // http://www.aprs.org/newN/ProportionalPathing.txt
5007
+
5005
5008
else if (strcasecmp (t , "PBEACON" ) == 0 ||
5006
5009
strcasecmp (t , "OBEACON" ) == 0 ||
5007
5010
strcasecmp (t , "TBEACON" ) == 0 ||
@@ -5455,7 +5458,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
5455
5458
for (j = 0 ; j < MAX_CHANS ; j ++ ) {
5456
5459
if (p_audio_config -> chan_medium [j ] == MEDIUM_RADIO || p_audio_config -> chan_medium [j ] == MEDIUM_NETTNC ) {
5457
5460
if (p_digi_config -> filter_str [MAX_CHANS ][j ] == NULL ) {
5458
- p_digi_config -> filter_str [MAX_CHANS ][j ] = strdup ("i/60 " );
5461
+ p_digi_config -> filter_str [MAX_CHANS ][j ] = strdup ("i/180 " );
5459
5462
}
5460
5463
}
5461
5464
}
@@ -5822,6 +5825,10 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
5822
5825
5823
5826
/*
5824
5827
* Process symbol now that we have any later overlay.
5828
+ *
5829
+ * FIXME: Someone who used this was surprized to end up with Solar Powser (S-).
5830
+ * overlay=S symbol="/-"
5831
+ * We should complain if overlay used with symtab other than \.
5825
5832
*/
5826
5833
if (strlen (temp_symbol ) > 0 ) {
5827
5834
0 commit comments