Skip to content

Commit 4ac666d

Browse files
committed
Clean up atest EAS receive.
1 parent 4cd63df commit 4ac666d

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

man/atest.1

+4
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,10 @@ Data rate in bits/sec. Standard values are 300, 1200, 2400, 4800, 9600.
3737
4800 bps uses 8PSK based on V.27 standard.
3838
.P
3939
9600 bps and up uses K9NG/G3RUH standard.
40+
.P
41+
AIS for ship Automatic Identification System.
42+
.P
43+
EAS for Emergency Alert System (EAS) Specific Area Message Encoding (SAME).
4044
.RE
4145
.RE
4246
.PD

src/atest.c

+12-14
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//
33
// This file is part of Dire Wolf, an amateur radio packet TNC.
44
//
5-
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021, 2022 John Langner, WB2OSZ
5+
// Copyright (C) 2011, 2012, 2013, 2014, 2015, 2016, 2019, 2021, 2022, 2023 John Langner, WB2OSZ
66
//
77
// This program is free software: you can redistribute it and/or modify
88
// it under the terms of the GNU General Public License as published by
@@ -276,12 +276,12 @@ int main (int argc, char *argv[])
276276

277277
case 'B': /* -B for data Bit rate */
278278
/* Also implies modem type based on speed. */
279-
/* Special case "AIS" rather than number. */
279+
/* Special cases AIS, EAS rather than number. */
280280
if (strcasecmp(optarg, "AIS") == 0) {
281-
B_opt = 12345; // See special case below.
281+
B_opt = 0xA15A15; // See special case below.
282282
}
283283
else if (strcasecmp(optarg, "EAS") == 0) {
284-
B_opt = 23456; // See special case below.
284+
B_opt = 0xEA5EA5; // See special case below.
285285
}
286286
else {
287287
B_opt = atoi(optarg);
@@ -425,11 +425,6 @@ int main (int argc, char *argv[])
425425

426426
my_audio_config.achan[0].baud = B_opt;
427427

428-
if (my_audio_config.achan[0].baud < MIN_BAUD || my_audio_config.achan[0].baud > MAX_BAUD) {
429-
text_color_set(DW_COLOR_ERROR);
430-
dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n", MIN_BAUD, MAX_BAUD);
431-
exit (EXIT_FAILURE);
432-
}
433428

434429
/* We have similar logic in direwolf.c, config.c, gen_packets.c, and atest.c, */
435430
/* that need to be kept in sync. Maybe it could be a common function someday. */
@@ -438,21 +433,18 @@ int main (int argc, char *argv[])
438433
my_audio_config.achan[0].modem_type = MODEM_AFSK;
439434
my_audio_config.achan[0].mark_freq = 1615;
440435
my_audio_config.achan[0].space_freq = 1785;
441-
//strlcpy (my_audio_config.achan[0].profiles, "A", sizeof(my_audio_config.achan[0].profiles));
442436
}
443437
else if (my_audio_config.achan[0].baud < 600) { // e.g. HF SSB packet
444438
my_audio_config.achan[0].modem_type = MODEM_AFSK;
445439
my_audio_config.achan[0].mark_freq = 1600;
446440
my_audio_config.achan[0].space_freq = 1800;
447441
// Previously we had a "D" which was fine tuned for 300 bps.
448442
// In v1.7, it's not clear if we should use "B" or just stick with "A".
449-
//strlcpy (my_audio_config.achan[0].profiles, "B", sizeof(my_audio_config.achan[0].profiles));
450443
}
451444
else if (my_audio_config.achan[0].baud < 1800) { // common 1200
452445
my_audio_config.achan[0].modem_type = MODEM_AFSK;
453446
my_audio_config.achan[0].mark_freq = DEFAULT_MARK_FREQ;
454447
my_audio_config.achan[0].space_freq = DEFAULT_SPACE_FREQ;
455-
// Should default to E+ or something similar later.
456448
}
457449
else if (my_audio_config.achan[0].baud < 3600) {
458450
my_audio_config.achan[0].modem_type = MODEM_QPSK;
@@ -466,14 +458,14 @@ int main (int argc, char *argv[])
466458
my_audio_config.achan[0].space_freq = 0;
467459
strlcpy (my_audio_config.achan[0].profiles, "", sizeof(my_audio_config.achan[0].profiles));
468460
}
469-
else if (my_audio_config.achan[0].baud == 12345) { // Hack for different use of 9600
461+
else if (my_audio_config.achan[0].baud == 0xA15A15) { // Hack for different use of 9600
470462
my_audio_config.achan[0].modem_type = MODEM_AIS;
471463
my_audio_config.achan[0].baud = 9600;
472464
my_audio_config.achan[0].mark_freq = 0;
473465
my_audio_config.achan[0].space_freq = 0;
474466
strlcpy (my_audio_config.achan[0].profiles, " ", sizeof(my_audio_config.achan[0].profiles)); // avoid getting default later.
475467
}
476-
else if (my_audio_config.achan[0].baud == 23456) {
468+
else if (my_audio_config.achan[0].baud == 0xEA5EA5) {
477469
my_audio_config.achan[0].modem_type = MODEM_EAS;
478470
my_audio_config.achan[0].baud = 521; // Actually 520.83 but we have an integer field here.
479471
// Will make more precise in afsk demod init.
@@ -488,6 +480,12 @@ int main (int argc, char *argv[])
488480
strlcpy (my_audio_config.achan[0].profiles, " ", sizeof(my_audio_config.achan[0].profiles)); // avoid getting default later.
489481
}
490482

483+
if (my_audio_config.achan[0].baud < MIN_BAUD || my_audio_config.achan[0].baud > MAX_BAUD) {
484+
text_color_set(DW_COLOR_ERROR);
485+
dw_printf ("Use a more reasonable bit rate in range of %d - %d.\n", MIN_BAUD, MAX_BAUD);
486+
exit (EXIT_FAILURE);
487+
}
488+
491489
/*
492490
* -g option means force g3RUH regardless of speed.
493491
*/

0 commit comments

Comments
 (0)