Skip to content

Commit 249f5bd

Browse files
committed
Clean out old obsolete demodulators.
1 parent 747224c commit 249f5bd

File tree

6 files changed

+7
-369
lines changed

6 files changed

+7
-369
lines changed

src/audio.h

-3
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,6 @@ struct audio_s {
173173

174174
int upsample; /* Upsample by this factor for G3RUH. */
175175

176-
int interleave; /* If > 1, interleave samples among multiple decoders. */
177-
/* Quick hack for experiment. */
178-
179176
int mark_freq; /* Two tones for AFSK modulation, in Hz. */
180177
int space_freq; /* Standard tones are 1200 and 2200 for 1200 baud. */
181178

src/demod.c

+1-44
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,6 @@ int demod_init (struct audio_s *pa)
120120
* This can be increased by:
121121
* Multiple frequencies.
122122
* Multiple letters (not sure if I will continue this).
123-
* New interleaved decoders.
124123
*
125124
* num_slicers is set to max by the "+" option.
126125
*/
@@ -313,48 +312,6 @@ int demod_init (struct audio_s *pa)
313312

314313
save_audio_config_p->achan[chan].num_subchan = num_letters;
315314

316-
/*
317-
* Quick hack with special case for another experiment.
318-
* Do this in a more general way if it turns out to be useful.
319-
*/
320-
save_audio_config_p->achan[chan].interleave = 1;
321-
if (strcasecmp(save_audio_config_p->achan[chan].profiles, "EE") == 0) {
322-
save_audio_config_p->achan[chan].interleave = 2;
323-
save_audio_config_p->achan[chan].decimate = 1;
324-
}
325-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "EEE") == 0) {
326-
save_audio_config_p->achan[chan].interleave = 3;
327-
save_audio_config_p->achan[chan].decimate = 1;
328-
}
329-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "EEEE") == 0) {
330-
save_audio_config_p->achan[chan].interleave = 4;
331-
save_audio_config_p->achan[chan].decimate = 1;
332-
}
333-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "EEEEE") == 0) {
334-
save_audio_config_p->achan[chan].interleave = 5;
335-
save_audio_config_p->achan[chan].decimate = 1;
336-
}
337-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "GG") == 0) {
338-
save_audio_config_p->achan[chan].interleave = 2;
339-
save_audio_config_p->achan[chan].decimate = 1;
340-
}
341-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "GGG") == 0) {
342-
save_audio_config_p->achan[chan].interleave = 3;
343-
save_audio_config_p->achan[chan].decimate = 1;
344-
}
345-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "GGG+") == 0) {
346-
save_audio_config_p->achan[chan].interleave = 3;
347-
save_audio_config_p->achan[chan].decimate = 1;
348-
}
349-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "GGGG") == 0) {
350-
save_audio_config_p->achan[chan].interleave = 4;
351-
save_audio_config_p->achan[chan].decimate = 1;
352-
}
353-
else if (strcasecmp(save_audio_config_p->achan[chan].profiles, "GGGGG") == 0) {
354-
save_audio_config_p->achan[chan].interleave = 5;
355-
save_audio_config_p->achan[chan].decimate = 1;
356-
}
357-
358315
if (save_audio_config_p->achan[chan].num_subchan != num_letters) {
359316
text_color_set(DW_COLOR_ERROR);
360317
dw_printf ("INTERNAL ERROR, %s:%d, chan=%d, num_subchan(%d) != strlen(\"%s\")\n",
@@ -383,7 +340,7 @@ int demod_init (struct audio_s *pa)
383340
dw_printf (" %d.%d: %c %d & %d\n", chan, d, profile, mark, space);
384341
}
385342

386-
demod_afsk_init (save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec / (save_audio_config_p->achan[chan].decimate * save_audio_config_p->achan[chan].interleave),
343+
demod_afsk_init (save_audio_config_p->adev[ACHAN2ADEV(chan)].samples_per_sec / save_audio_config_p->achan[chan].decimate,
387344
save_audio_config_p->achan[chan].baud,
388345
mark,
389346
space,

src/demod_9600.c

+1-37
Original file line numberDiff line numberDiff line change
@@ -159,12 +159,6 @@ void demod_9600_init (int samples_per_sec, int baud, struct demodulator_state_s
159159
D->pll_locked_inertia = 0.89;
160160
D->pll_searching_inertia = 0.67;
161161

162-
D->play_it_again_sample = 0; // TODO: 1.6 experiment.
163-
// assuming lp_filter_size > lp2_filter_size
164-
165-
D->lp2_filter_size = samples_per_sec / baud; // samples for 1 bit
166-
167-
168162
// break;
169163
// }
170164

@@ -216,12 +210,6 @@ void demod_9600_init (int samples_per_sec, int baud, struct demodulator_state_s
216210

217211
(void)gen_lowpass (fc, D->lp_filter, D->lp_filter_size, D->lp_window, 0);
218212

219-
// Go back and resample where bit is expected.
220-
221-
fc = (float)baud * 1 / (float)samples_per_sec;
222-
223-
(void)gen_lowpass (fc, D->lp2_filter, D->lp2_filter_size, D->lp_window, 0);
224-
225213
/* Version 1.2: Experiment with different slicing levels. */
226214

227215
for (j = 0; j < MAX_SUBCHANS; j++) {
@@ -524,31 +512,7 @@ inline static void nudge_pll (int chan, int subchan, int slice, float demod_out_
524512

525513
/* Overflow. Was large positive, wrapped around, now large negative. */
526514

527-
528-
if (D->play_it_again_sample) { // New experiment in 1.6.
529-
530-
// FIXME: double check position and draw picture.
531-
532-
int offset = ( D->lp_filter_size - D->lp2_filter_size ) / 2;
533-
534-
float amp = convolve (D->raw_cb + offset, D->lp2_filter, D->lp2_filter_size);
535-
536-
int resampled;
537-
538-
if (D->num_slicers > 1) {
539-
resampled = amp - slice_point[slice] > 0;;
540-
}
541-
else {
542-
resampled = amp > 0;
543-
}
544-
545-
hdlc_rec_bit (chan, subchan, slice, resampled, 1, D->slicer[slice].lfsr);
546-
}
547-
else {
548-
549-
// traditional
550-
hdlc_rec_bit (chan, subchan, slice, demod_out_f > 0, 1, D->slicer[slice].lfsr);
551-
}
515+
hdlc_rec_bit (chan, subchan, slice, demod_out_f > 0, 1, D->slicer[slice].lfsr);
552516
}
553517

554518
/*

0 commit comments

Comments
 (0)