Skip to content

Commit 9922f17

Browse files
committed
New AFSK demodulators.
'A' uses mark and space filters but simpler and cleaner than earlier attempts. New 'B' uses a different technique where the demodulated signal is proportional to the frequency.
1 parent fdf660a commit 9922f17

12 files changed

+754
-584
lines changed

src/atest.c

+10-8
Original file line numberDiff line numberDiff line change
@@ -236,7 +236,7 @@ int main (int argc, char *argv[])
236236
my_audio_config.achan[channel].space_freq = DEFAULT_SPACE_FREQ;
237237
my_audio_config.achan[channel].baud = DEFAULT_BAUD;
238238

239-
strlcpy (my_audio_config.achan[channel].profiles, "E", sizeof(my_audio_config.achan[channel].profiles));
239+
strlcpy (my_audio_config.achan[channel].profiles, "A", sizeof(my_audio_config.achan[channel].profiles));
240240

241241
my_audio_config.achan[channel].num_freq = 1;
242242
my_audio_config.achan[channel].offset = 0;
@@ -430,19 +430,21 @@ int main (int argc, char *argv[])
430430
/* We have similar logic in direwolf.c, config.c, gen_packets.c, and atest.c, */
431431
/* that need to be kept in sync. Maybe it could be a common function someday. */
432432

433-
if (my_audio_config.achan[0].baud == 100) {
433+
if (my_audio_config.achan[0].baud == 100) { // What was this for?
434434
my_audio_config.achan[0].modem_type = MODEM_AFSK;
435435
my_audio_config.achan[0].mark_freq = 1615;
436436
my_audio_config.achan[0].space_freq = 1785;
437-
strlcpy (my_audio_config.achan[0].profiles, "D", sizeof(my_audio_config.achan[0].profiles));
437+
//strlcpy (my_audio_config.achan[0].profiles, "A", sizeof(my_audio_config.achan[0].profiles));
438438
}
439-
else if (my_audio_config.achan[0].baud < 600) {
439+
else if (my_audio_config.achan[0].baud < 600) { // e.g. HF SSB packet
440440
my_audio_config.achan[0].modem_type = MODEM_AFSK;
441441
my_audio_config.achan[0].mark_freq = 1600;
442442
my_audio_config.achan[0].space_freq = 1800;
443-
strlcpy (my_audio_config.achan[0].profiles, "D", sizeof(my_audio_config.achan[0].profiles));
443+
// Previously we had a "D" which was fine tuned for 300 bps.
444+
// In v1.7, it's not clear if we should use "B" or just stick with "A".
445+
//strlcpy (my_audio_config.achan[0].profiles, "B", sizeof(my_audio_config.achan[0].profiles));
444446
}
445-
else if (my_audio_config.achan[0].baud < 1800) {
447+
else if (my_audio_config.achan[0].baud < 1800) { // common 1200
446448
my_audio_config.achan[0].modem_type = MODEM_AFSK;
447449
my_audio_config.achan[0].mark_freq = DEFAULT_MARK_FREQ;
448450
my_audio_config.achan[0].space_freq = DEFAULT_SPACE_FREQ;
@@ -460,7 +462,7 @@ int main (int argc, char *argv[])
460462
my_audio_config.achan[0].space_freq = 0;
461463
strlcpy (my_audio_config.achan[0].profiles, "", sizeof(my_audio_config.achan[0].profiles));
462464
}
463-
else if (my_audio_config.achan[0].baud == 12345) {
465+
else if (my_audio_config.achan[0].baud == 12345) { // Hack for different use of 9600
464466
my_audio_config.achan[0].modem_type = MODEM_AIS;
465467
my_audio_config.achan[0].baud = 9600;
466468
my_audio_config.achan[0].mark_freq = 0;
@@ -473,7 +475,7 @@ int main (int argc, char *argv[])
473475
// Will make more precise in afsk demod init.
474476
my_audio_config.achan[0].mark_freq = 2083; // Actually 2083.3 - logic 1.
475477
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));
478+
strlcpy (my_audio_config.achan[0].profiles, "A", sizeof(my_audio_config.achan[0].profiles));
477479
}
478480
else {
479481
my_audio_config.achan[0].modem_type = MODEM_SCRAMBLE;

src/config.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1337,7 +1337,7 @@ void config_init (char *fname, struct audio_s *p_audio_config,
13371337
// Will make more precise in afsk demod init.
13381338
p_audio_config->achan[channel].mark_freq = 2083; // Actually 2083.3 - logic 1.
13391339
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));
1340+
// ? strlcpy (p_audio_config->achan[channel].profiles, "A", sizeof(p_audio_config->achan[channel].profiles));
13411341
}
13421342
else {
13431343
p_audio_config->achan[channel].modem_type = MODEM_SCRAMBLE;

src/demod.c

+39-28
Original file line numberDiff line numberDiff line change
@@ -198,46 +198,57 @@ int demod_init (struct audio_s *pa)
198198
assert (num_letters == (int)(strlen(just_letters)));
199199

200200
/*
201-
* Pick a good default demodulator if none specified.
201+
* Pick a good default demodulator if none specified.
202+
* Previously, we had "D" optimized for 300 bps.
203+
* Gone in 1.7 so it is always "A+".
202204
*/
203205
if (num_letters == 0) {
206+
strlcpy (just_letters, "A", sizeof(just_letters));
207+
num_letters = strlen(just_letters);
204208

205-
if (save_audio_config_p->achan[chan].baud < 600) {
206-
207-
/* This has been optimized for 300 baud. */
208-
209-
strlcpy (just_letters, "D", sizeof(just_letters));
209+
if (have_plus != -1) have_plus = 1; // Add as default for version 1.2
210+
// If not explicitly turned off.
211+
}
210212

211-
}
212-
else {
213+
/*
214+
* Special case for ARM.
215+
* The higher end ARM chips have loads of power but many people
216+
* are using a single core Pi Zero or similar.
217+
* (I'm still using a model 1 for my digipeater/IGate!)
218+
* Decreasing CPU requirement has a negligible impact on decoding performance.
219+
*
220+
* atest -PA- 01_Track_1.wav --> 1002 packets decoded.
221+
* atest -PA- -D3 01_Track_1.wav --> 997 packets decoded.
222+
*
223+
* Someone concerned about 1/2 of one percent difference can add "-D 1"
224+
*/
213225
#if __arm__
214-
/* We probably don't have a lot of CPU power available. */
215-
/* Previously we would use F if possible otherwise fall back to A. */
216-
217-
/* In version 1.2, new default is E+ /3. */
218-
strlcpy (just_letters, "E", sizeof(just_letters)); // version 1.2 now E.
219-
if (have_plus != -1) have_plus = 1; // Add as default for version 1.2
220-
// If not explicitly turned off.
221-
if (save_audio_config_p->achan[chan].decimate == 0) {
222-
if (save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec > 40000) {
223-
save_audio_config_p->achan[chan].decimate = 3;
224-
}
225-
}
226-
#else
227-
strlcpy (just_letters, "E", sizeof(just_letters)); // version 1.2 changed C to E.
228-
if (have_plus != -1) have_plus = 1; // Add as default for version 1.2
229-
// If not explicitly turned off.
230-
#endif
226+
if (save_audio_config_p->achan[chan].decimate == 0) {
227+
if (save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec > 40000) {
228+
save_audio_config_p->achan[chan].decimate = 3;
231229
}
232-
num_letters = 1;
233230
}
231+
#endif
232+
233+
/*
234+
* Number of filter taps is proportional to number of audio samples in a "symbol" duration.
235+
* These can get extremely large for low speeds, e.g. 300 baud.
236+
* In this case, increase the decimation ration. Crude approximation. Could be improved.
237+
*/
238+
if (save_audio_config_p->achan[chan].decimate == 0 &&
239+
save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec > 40000 &&
240+
save_audio_config_p->achan[chan].baud < 600) {
234241

242+
// Avoid enormous number of filter taps.
243+
244+
save_audio_config_p->achan[chan].decimate = 3;
245+
}
235246

236-
assert (num_letters == (int)(strlen(just_letters)));
237247

238248
/*
239249
* Put it back together again.
240250
*/
251+
assert (num_letters == (int)(strlen(just_letters)));
241252

242253
/* At this point, have_plus can have 3 values: */
243254
/* 1 = turned on, either explicitly or by applied default */
@@ -286,7 +297,7 @@ int demod_init (struct audio_s *pa)
286297

287298
if (save_audio_config_p->achan[chan].decimate == 0) {
288299
save_audio_config_p->achan[chan].decimate = 1;
289-
if (strchr (just_letters, 'D') != NULL && save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec > 40000) {
300+
if (strchr (just_letters, 'B') != NULL && save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec > 40000) {
290301
save_audio_config_p->achan[chan].decimate = 3;
291302
}
292303
}

src/demod_9600.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -221,7 +221,7 @@ void demod_9600_init (enum modem_t modem_type, int samples_per_sec, int baud, st
221221

222222
//dw_printf ("demod_9600_init: call gen_lowpass(fc=%.2f, , size=%d, )\n", fc, D->lp_filter_size);
223223

224-
(void)gen_lowpass (fc, D->lp_filter, D->lp_filter_size, D->lp_window, 0);
224+
gen_lowpass (fc, D->lp_filter, D->lp_filter_size, D->lp_window);
225225

226226
/* Version 1.2: Experiment with different slicing levels. */
227227

0 commit comments

Comments
 (0)