Skip to content

Commit a207287

Browse files
committed
Issue 298 - Add beacon SOURCE option to override AX.25 source.
1 parent 4a1aa2b commit a207287

File tree

3 files changed

+22
-1
lines changed

3 files changed

+22
-1
lines changed

src/beacon.c

+6-1
Original file line numberDiff line numberDiff line change
@@ -804,7 +804,12 @@ static void beacon_send (int j, dwgps_info_t *gpsinfo)
804804
* src > dest [ , via ]
805805
*/
806806

807-
strlcpy (beacon_text, mycall, sizeof(beacon_text));
807+
if (bp->source != NULL) {
808+
strlcpy (beacon_text, bp->source, sizeof(beacon_text));
809+
}
810+
else {
811+
strlcpy (beacon_text, mycall, sizeof(beacon_text));
812+
}
808813
strlcat (beacon_text, ">", sizeof(beacon_text));
809814

810815
if (bp->dest != NULL) {

src/config.c

+13
Original file line numberDiff line numberDiff line change
@@ -5273,6 +5273,8 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
52735273
b->freq = G_UNKNOWN;
52745274
b->tone = G_UNKNOWN;
52755275
b->offset = G_UNKNOWN;
5276+
b->source = NULL;
5277+
b->dest = NULL;
52765278

52775279
while ((t = split(NULL,0)) != NULL) {
52785280

@@ -5344,6 +5346,17 @@ static int beacon_options(char *cmd, struct beacon_s *b, int line, struct audio_
53445346
b->sendto_chan = n;
53455347
}
53465348
}
5349+
else if (strcasecmp(keyword, "SOURCE") == 0) {
5350+
b->source = strdup(value);
5351+
for (p = b->source; *p != '\0'; p++) {
5352+
if (islower(*p)) {
5353+
*p = toupper(*p); /* silently force upper case. */
5354+
}
5355+
}
5356+
if (strlen(b->source) > 9) {
5357+
b->source[9] = '\0';
5358+
}
5359+
}
53475360
else if (strcasecmp(keyword, "DEST") == 0) {
53485361
b->dest = strdup(value);
53495362
for (p = b->dest; *p != '\0'; p++) {

src/config.h

+3
Original file line numberDiff line numberDiff line change
@@ -160,6 +160,9 @@ struct misc_config_s {
160160

161161
time_t next; /* Unix time to transmit next one. */
162162

163+
char *source; /* NULL or explicit AX.25 source address to use */
164+
/* instead of the mycall value for the channel. */
165+
163166
char *dest; /* NULL or explicit AX.25 destination to use */
164167
/* instead of the software version such as APDW11. */
165168

0 commit comments

Comments
 (0)