Skip to content

Commit e2b32d1

Browse files
committed
EAS SAME reception.
1 parent 5fd8120 commit e2b32d1

11 files changed

+369
-65
lines changed

CHANGES.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818

1919
- "-X" option enables FX.25 transmission. FX.25 reception is always enabled so you don't need to do anything special. "What is FX.25?" you might ask. It is forward error correction (FEC) added in a way that is completely compatible with an ordinary AX.25 frame. See new document ***AX25\_plus\_FEC\_equals\_FX25.pdf*** for details.
2020

21-
- Receive AIS location data from ships. Enable by using "-B AIS" command line option or "MODEM AIS" in the configuration file. AIS NMEA sentences are encapsulated in APRS user-defined data with a "{DA" prefix. This uses 9600 bps so you need to use wide band audio, not what comes out of the speaker.
21+
- Receive AIS location data from ships. Enable by using "-B AIS" command line option or "MODEM AIS" in the configuration file. AIS NMEA sentences are encapsulated in APRS user-defined data with a "{DA" prefix. This uses 9600 bps so you need to use wide band audio, not what comes out of the speaker. There is also a "-A" option to generate APRS Object Reports.
22+
23+
- Receive Emergency Alert System (EAS) Specific Area Message Encoding (SAME). Enable by using "-B EAS" command line option or "MODEM EAS" in the configuration file. EAS SAME messages are encapsulated in APRS user-defined data with a "{DE" prefix. This uses low speed AFSK so speaker output is fine.
2224

2325
- "-t" option now accepts more values to accommodate inconsistent handling of text color control codes by different terminal emulators. The default, 1, should work with most modern terminal types. If the colors are not right, try "-t 9" to see the result of the different choices and pick the best one. If none of them look right, file a bug report and specify: operating system version (e.g. Raspbian Buster), terminal emulator type and version (e.g. LXTerminal 0.3.2). Include a screen capture.
2426

src/atest.c

+12
Original file line numberDiff line numberDiff line change
@@ -277,6 +277,9 @@ int main (int argc, char *argv[])
277277
if (strcasecmp(optarg, "AIS") == 0) {
278278
B_opt = 12345; // See special case below.
279279
}
280+
else if (strcasecmp(optarg, "EAS") == 0) {
281+
B_opt = 23456; // See special case below.
282+
}
280283
else {
281284
B_opt = atoi(optarg);
282285
}
@@ -464,6 +467,14 @@ int main (int argc, char *argv[])
464467
my_audio_config.achan[0].space_freq = 0;
465468
strlcpy (my_audio_config.achan[0].profiles, " ", sizeof(my_audio_config.achan[0].profiles)); // avoid getting default later.
466469
}
470+
else if (my_audio_config.achan[0].baud == 23456) {
471+
my_audio_config.achan[0].modem_type = MODEM_EAS;
472+
my_audio_config.achan[0].baud = 521; // Actually 520.83 but we have an integer field here.
473+
// Will make more precise in afsk demod init.
474+
my_audio_config.achan[0].mark_freq = 2083; // Actually 2083.3 - logic 1.
475+
my_audio_config.achan[0].space_freq = 1563; // Actually 1562.5 - logic 0.
476+
strlcpy (my_audio_config.achan[0].profiles, "D", sizeof(my_audio_config.achan[0].profiles));
477+
}
467478
else {
468479
my_audio_config.achan[0].modem_type = MODEM_SCRAMBLE;
469480
my_audio_config.achan[0].mark_freq = 0;
@@ -945,6 +956,7 @@ static void usage (void) {
945956
dw_printf (" 4800 bps uses 8PSK based on V.27 standard.\n");
946957
dw_printf (" 9600 bps and up uses K9NG/G3RUH standard.\n");
947958
dw_printf (" AIS for ship Automatic Identification System.\n");
959+
dw_printf (" EAS for Emergency Alert System (EAS) Specific Area Message Encoding (SAME).\n");
948960
dw_printf ("\n");
949961
dw_printf (" -g Use G3RUH modem rather rather than default for data rate.\n");
950962
dw_printf (" -j 2400 bps QPSK compatible with direwolf <= 1.5.\n");

src/audio.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ struct audio_s {
148148
/* Could all be the same or different. */
149149

150150

151-
enum modem_t { MODEM_AFSK, MODEM_BASEBAND, MODEM_SCRAMBLE, MODEM_QPSK, MODEM_8PSK, MODEM_OFF, MODEM_16_QAM, MODEM_64_QAM, MODEM_AIS } modem_type;
151+
enum modem_t { MODEM_AFSK, MODEM_BASEBAND, MODEM_SCRAMBLE, MODEM_QPSK, MODEM_8PSK, MODEM_OFF, MODEM_16_QAM, MODEM_64_QAM, MODEM_AIS, MODEM_EAS } modem_type;
152152

153153
/* Usual AFSK. */
154154
/* Baseband signal. Not used yet. */

src/config.c

+11
Original file line numberDiff line numberDiff line change
@@ -1279,6 +1279,9 @@ void config_init (char *fname, struct audio_s *p_audio_config,
12791279
if (strcasecmp(t,"AIS") == 0) {
12801280
n = 12345; // See special case later.
12811281
}
1282+
else if (strcasecmp(t,"EAS") == 0) {
1283+
n = 23456; // See special case later.
1284+
}
12821285
else {
12831286
n = atoi(t);
12841287
}
@@ -1328,6 +1331,14 @@ void config_init (char *fname, struct audio_s *p_audio_config,
13281331
p_audio_config->achan[channel].mark_freq = 0;
13291332
p_audio_config->achan[channel].space_freq = 0;
13301333
}
1334+
else if (p_audio_config->achan[channel].baud == 23456) {
1335+
p_audio_config->achan[channel].modem_type = MODEM_EAS;
1336+
p_audio_config->achan[channel].baud = 521; // Actually 520.83 but we have an integer field here.
1337+
// Will make more precise in afsk demod init.
1338+
p_audio_config->achan[channel].mark_freq = 2083; // Actually 2083.3 - logic 1.
1339+
p_audio_config->achan[channel].space_freq = 1563; // Actually 1562.5 - logic 0.
1340+
// ? strlcpy (p_audio_config->achan[channel].profiles, "D", sizeof(p_audio_config->achan[channel].profiles));
1341+
}
13311342
else {
13321343
p_audio_config->achan[channel].modem_type = MODEM_SCRAMBLE;
13331344
p_audio_config->achan[channel].mark_freq = 0;

src/demod.c

+17-1
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,20 @@ int demod_init (struct audio_s *pa)
133133
break;
134134

135135
case MODEM_AFSK:
136+
case MODEM_EAS:
137+
138+
if (save_audio_config_p->achan[chan].modem_type == MODEM_EAS) {
139+
if (save_audio_config_p->achan[chan].fix_bits != RETRY_NONE) {
140+
text_color_set(DW_COLOR_INFO);
141+
dw_printf ("Channel %d: FIX_BITS option has been turned off for EAS.\n", chan);
142+
save_audio_config_p->achan[chan].fix_bits = RETRY_NONE;
143+
}
144+
if (save_audio_config_p->achan[chan].passall != 0) {
145+
text_color_set(DW_COLOR_INFO);
146+
dw_printf ("Channel %d: PASSALL option has been turned off for EAS.\n", chan);
147+
save_audio_config_p->achan[chan].passall = 0;
148+
}
149+
}
136150

137151
/*
138152
* Tear apart the profile and put it back together in a normalized form:
@@ -954,6 +968,7 @@ void demod_process_sample (int chan, int subchan, int sam)
954968
break;
955969

956970
case MODEM_AFSK:
971+
case MODEM_EAS:
957972

958973
if (save_audio_config_p->achan[chan].decimate > 1) {
959974

@@ -1070,7 +1085,8 @@ alevel_t demod_get_audio_level (int chan, int subchan)
10701085

10711086
alevel.rec = (int) (( D->alevel_rec_peak - D->alevel_rec_valley ) * 50.0f + 0.5f);
10721087

1073-
if (save_audio_config_p->achan[chan].modem_type == MODEM_AFSK) {
1088+
if (save_audio_config_p->achan[chan].modem_type == MODEM_AFSK ||
1089+
save_audio_config_p->achan[chan].modem_type == MODEM_EAS) {
10741090

10751091
/* For AFSK, we have mark and space amplitudes. */
10761092

src/demod_afsk.c

+11-2
Original file line numberDiff line numberDiff line change
@@ -307,9 +307,18 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
307307
/*
308308
* Calculate constants used for timing.
309309
* The audio sample rate must be at least a few times the data rate.
310+
*
311+
* Baud is an integer so we hack in a fine ajustment for EAS.
312+
* Probably makes no difference because the DPLL keeps it in sync.
313+
*
314+
* A fraction if a Hz would make no difference for the filters.
310315
*/
311-
312-
D->pll_step_per_sample = (int) round((TICKS_PER_PLL_CYCLE * (double)baud) / ((double)samples_per_sec));
316+
if (baud == 521) {
317+
D->pll_step_per_sample = (int) round((TICKS_PER_PLL_CYCLE * (double)520.83) / ((double)samples_per_sec));
318+
}
319+
else {
320+
D->pll_step_per_sample = (int) round((TICKS_PER_PLL_CYCLE * (double)baud) / ((double)samples_per_sec));
321+
}
313322

314323
/*
315324
* Convert number of bit times to number of taps.

src/direwolf.c

+13-1
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ int main (int argc, char *argv[])
288288
text_color_init(t_opt);
289289
text_color_set(DW_COLOR_INFO);
290290
//dw_printf ("Dire Wolf version %d.%d (%s) Beta Test 4\n", MAJOR_VERSION, MINOR_VERSION, __DATE__);
291-
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "F", __DATE__);
291+
dw_printf ("Dire Wolf DEVELOPMENT version %d.%d %s (%s)\n", MAJOR_VERSION, MINOR_VERSION, "G", __DATE__);
292292
//dw_printf ("Dire Wolf version %d.%d\n", MAJOR_VERSION, MINOR_VERSION);
293293

294294

@@ -435,6 +435,9 @@ int main (int argc, char *argv[])
435435
if (strcasecmp(optarg, "AIS") == 0) {
436436
B_opt = 12345; // See special case below.
437437
}
438+
else if (strcasecmp(optarg, "EAS") == 0) {
439+
B_opt = 23456; // See special case below.
440+
}
438441
else {
439442
B_opt = atoi(optarg);
440443
}
@@ -749,6 +752,14 @@ int main (int argc, char *argv[])
749752
audio_config.achan[0].mark_freq = 0;
750753
audio_config.achan[0].space_freq = 0;
751754
}
755+
else if (audio_config.achan[0].baud == 23456) {
756+
audio_config.achan[0].modem_type = MODEM_EAS;
757+
audio_config.achan[0].baud = 521; // Actually 520.83 but we have an integer field here.
758+
// Will make more precise in afsk demod init.
759+
audio_config.achan[0].mark_freq = 2083; // Actually 2083.3 - logic 1.
760+
audio_config.achan[0].space_freq = 1563; // Actually 1562.5 - logic 0.
761+
strlcpy (audio_config.achan[0].profiles, "D", sizeof(audio_config.achan[0].profiles));
762+
}
752763
else {
753764
audio_config.achan[0].modem_type = MODEM_SCRAMBLE;
754765
audio_config.achan[0].mark_freq = 0;
@@ -1451,6 +1462,7 @@ static void usage (char **argv)
14511462
dw_printf (" 4800 bps uses 8PSK based on V.27 standard.\n");
14521463
dw_printf (" 9600 bps and up uses K9NG/G3RUH standard.\n");
14531464
dw_printf (" AIS for ship Automatic Identification System.\n");
1465+
dw_printf (" EAS for Emergency Alert System (EAS) Specific Area Message Encoding (SAME).\n");
14541466
dw_printf (" -g Force G3RUH modem regardless of speed.\n");
14551467
dw_printf (" -j 2400 bps QPSK compatible with direwolf <= 1.5.\n");
14561468
dw_printf (" -J 2400 bps QPSK compatible with MFJ-2400.\n");

0 commit comments

Comments
 (0)