Skip to content

Commit 8913a85

Browse files
committed
clean up
1 parent d0fc24a commit 8913a85

File tree

3 files changed

+11
-6
lines changed

3 files changed

+11
-6
lines changed

src/config.c

+9-2
Original file line numberDiff line numberDiff line change
@@ -4987,7 +4987,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
49874987

49884988
text_color_set(DW_COLOR_ERROR);
49894989
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");
49914991

49924992
}
49934993

@@ -5002,6 +5002,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
50025002
* New style with keywords for options.
50035003
*/
50045004

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+
50055008
else if (strcasecmp(t, "PBEACON") == 0 ||
50065009
strcasecmp(t, "OBEACON") == 0 ||
50075010
strcasecmp(t, "TBEACON") == 0 ||
@@ -5455,7 +5458,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
54555458
for (j=0; j<MAX_CHANS; j++) {
54565459
if (p_audio_config->chan_medium[j] == MEDIUM_RADIO || p_audio_config->chan_medium[j] == MEDIUM_NETTNC) {
54575460
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");
54595462
}
54605463
}
54615464
}
@@ -5822,6 +5825,10 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
58225825

58235826
/*
58245827
* 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 \.
58255832
*/
58265833
if (strlen(temp_symbol) > 0) {
58275834

src/config.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ struct misc_config_s {
214214
char symbol; /* Symbol code. */
215215

216216
float power; /* For PHG. */
217-
float height;
217+
float height; /* HAAT in feet */
218218
float gain; /* Original protocol spec was unclear. */
219219
/* Addendum 1.1 clarifies it is dBi not dBd. */
220220

src/direwolf.h

+1-3
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,7 @@
3838
#endif
3939

4040
/*
41-
* Previously, we could handle only a single audio device.
42-
* This meant we could have only two radio channels.
43-
* In version 1.2, we relax this restriction and allow more audio devices.
41+
* Maximum number of audio devices.
4442
* Three is probably adequate for standard version.
4543
* Larger reasonable numbers should also be fine.
4644
*

0 commit comments

Comments
 (0)