Skip to content

Commit 747224c

Browse files
committed
Remove obsolete 'F' demodulator.
1 parent 03939d2 commit 747224c

File tree

4 files changed

+1
-169
lines changed

4 files changed

+1
-169
lines changed

src/CMakeLists.txt

-28
Original file line numberDiff line numberDiff line change
@@ -16,28 +16,6 @@ if(WIN32 OR CYGWIN)
1616
)
1717
endif()
1818

19-
# build gen_fff to create fsk_fast_filter.h
20-
# optimization for slow processors
21-
list(APPEND gen_fff_SOURCES
22-
demod_afsk.c
23-
dsp.c
24-
textcolor.c
25-
)
26-
27-
add_executable(gen_fff
28-
${gen_fff_SOURCES}
29-
)
30-
31-
set_target_properties(gen_fff
32-
PROPERTIES COMPILE_FLAGS "-DGEN_FFF"
33-
)
34-
35-
add_custom_command(TARGET gen_fff
36-
POST_BUILD
37-
COMMAND gen_fff > fsk_fast_filter.h
38-
WORKING_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}
39-
)
40-
4119

4220
# direwolf
4321
list(APPEND direwolf_SOURCES
@@ -131,8 +109,6 @@ add_executable(direwolf
131109
${direwolf_SOURCES}
132110
)
133111

134-
add_dependencies(direwolf gen_fff)
135-
136112
target_link_libraries(direwolf
137113
${GEOTRANZ_LIBRARIES}
138114
${MISC_LIBRARIES}
@@ -180,8 +156,6 @@ add_executable(decode_aprs
180156
${decode_aprs_SOURCES}
181157
)
182158

183-
add_dependencies(decode_aprs gen_fff)
184-
185159
set_target_properties(decode_aprs
186160
PROPERTIES COMPILE_FLAGS "-DDECAMAIN -DUSE_REGEX_STATIC"
187161
)
@@ -339,8 +313,6 @@ add_executable(atest
339313
${atest_SOURCES}
340314
)
341315

342-
add_dependencies(atest gen_fff)
343-
344316
target_link_libraries(atest
345317
${MISC_LIBRARIES}
346318
${GPSD_LIBRARIES}

src/demod.c

-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
#include "tune.h"
4848
#include "fsk_demod_state.h"
4949
#include "fsk_gen_filter.h"
50-
#include "fsk_fast_filter.h"
5150
#include "hdlc_rec.h"
5251
#include "textcolor.h"
5352
#include "demod_9600.h"

src/demod_afsk.c

+1-136
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,6 @@
6363
#define MAX(a,b) ((a)>(b)?(a):(b))
6464

6565

66-
#ifndef GEN_FFF
67-
6866
/* Quick approximation to sqrt(x*x+y*y) */
6967
/* No benefit for regular PC. */
7068
/* Should help with microcomputer platform. */
@@ -137,8 +135,6 @@ static inline float agc (float in, float fast_attack, float slow_decay, float *p
137135
return (0.0f);
138136
}
139137

140-
#endif // ifndef GEN_FFF
141-
142138

143139
/*
144140
* for multi-slicer experiment.
@@ -197,27 +193,11 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
197193
#endif
198194

199195

200-
if (profile == 'F') {
201-
202-
if (baud != DEFAULT_BAUD ||
203-
mark_freq != DEFAULT_MARK_FREQ ||
204-
space_freq!= DEFAULT_SPACE_FREQ ||
205-
samples_per_sec != DEFAULT_SAMPLES_PER_SEC) {
206-
207-
text_color_set(DW_COLOR_INFO);
208-
dw_printf ("Note: Decoder 'F' works only for %d baud, %d/%d tones, %d samples/sec.\n",
209-
DEFAULT_BAUD, DEFAULT_MARK_FREQ, DEFAULT_SPACE_FREQ, DEFAULT_SAMPLES_PER_SEC);
210-
dw_printf ("Using Decoder 'A' instead.\n");
211-
profile = 'A';
212-
}
213-
}
214-
215196
D->profile = profile; // so we know whether to take fast path later.
216197

217198
switch (profile) {
218199

219200
case 'A':
220-
case 'F':
221201

222202
/* Original. 52 taps, truncated bandpass, IIR lowpass */
223203
/* 'F' is the fast version for low end processors. */
@@ -317,6 +297,7 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
317297
D->pll_searching_inertia = 0.350;
318298
break;
319299

300+
case 'F': // removed obsolete. treat as E for now.
320301
case 'E':
321302

322303
/* 1200 baud - Started out similar to C but add prefilter. */
@@ -686,98 +667,17 @@ failed experiment
686667
space_gain[j] = space_gain[j-1] * step;
687668
}
688669

689-
#ifndef GEN_FFF
690670
#if 0
691671
text_color_set(DW_COLOR_DEBUG);
692672
for (j=0; j<MAX_SUBCHANS; j++) {
693673
float db = 20.0 * log10f(space_gain[j]);
694674
dw_printf ("G = %.3f, %+.1f dB\n", space_gain[j], db);
695675
}
696676
#endif
697-
#endif
698677

699678
} /* fsk_gen_filter */
700679

701680

702-
#if GEN_FFF
703-
704-
705-
706-
// Properties of the radio channels.
707-
708-
static struct audio_s modem;
709-
710-
711-
// Filters will be stored here.
712-
713-
static struct demodulator_state_s ds;
714-
715-
716-
#define SPARSE 3
717-
718-
719-
static void emit_macro (char *name, int size, float *coeff)
720-
{
721-
int i;
722-
723-
dw_printf ("#define %s(x) \\\n", name);
724-
725-
for (i=SPARSE/2; i<size; i+=SPARSE) {
726-
dw_printf ("\t%c (%.6ff * x[%d]) \\\n", (i==0 ? ' ' : '+'), coeff[i], i);
727-
}
728-
dw_printf ("\n");
729-
}
730-
731-
int main (void)
732-
{
733-
//int n;
734-
char fff_profile;
735-
736-
fff_profile = 'F';
737-
738-
memset (&modem, 0, sizeof(modem));
739-
memset (&ds, 0, sizeof(ds));
740-
741-
modem.adev[0].num_channels = 1;
742-
modem.adev[0].samples_per_sec = DEFAULT_SAMPLES_PER_SEC;
743-
modem.achan[0].mark_freq = DEFAULT_MARK_FREQ;
744-
modem.achan[0].space_freq = DEFAULT_SPACE_FREQ;
745-
modem.achan[0].baud = DEFAULT_BAUD;
746-
modem.achan[0].num_subchan = 1;
747-
modem.achan[0].num_slicers = 1;
748-
749-
750-
demod_afsk_init (modem.adev[0].samples_per_sec, modem.achan[0].baud,
751-
modem.achan[0].mark_freq, modem.achan[0].space_freq, fff_profile, &ds);
752-
753-
printf ("/* This is an automatically generated file. Do not edit. */\n");
754-
printf ("\n");
755-
printf ("#define FFF_SAMPLES_PER_SEC %d\n", modem.adev[0].samples_per_sec);
756-
printf ("#define FFF_BAUD %d\n", modem.achan[0].baud);
757-
printf ("#define FFF_MARK_FREQ %d\n", modem.achan[0].mark_freq);
758-
printf ("#define FFF_SPACE_FREQ %d\n", modem.achan[0].space_freq);
759-
printf ("#define FFF_PROFILE '%c'\n", fff_profile);
760-
printf ("\n");
761-
762-
emit_macro ("CALC_M_SUM1", ds.ms_filter_size, ds.m_sin_table);
763-
emit_macro ("CALC_M_SUM2", ds.ms_filter_size, ds.m_cos_table);
764-
emit_macro ("CALC_S_SUM1", ds.ms_filter_size, ds.s_sin_table);
765-
emit_macro ("CALC_S_SUM2", ds.ms_filter_size, ds.s_cos_table);
766-
767-
exit(EXIT_SUCCESS);
768-
}
769-
770-
#endif
771-
772-
773-
774-
#ifndef GEN_FFF
775-
776-
/* Optimization for slow processors. */
777-
778-
#include "fsk_fast_filter.h"
779-
780-
781681

782682
/*-------------------------------------------------------------------
783683
*
@@ -881,37 +781,8 @@ void demod_afsk_process_sample (int chan, int subchan, int sam, struct demodulat
881781

882782
/*
883783
* Next we have bandpass filters for the mark and space tones.
884-
*
885-
* This takes a lot of computation.
886-
* It's not a problem on a typical (Intel x86 based) PC.
887-
* Dire Wolf takes only about 2 or 3% of the CPU time.
888-
*
889-
* It might be too much for a little microcomputer to handle.
890-
*
891-
* Here we have an optimized case for the default values.
892784
*/
893785

894-
895-
896-
// TODO1.2: is this right or do we need to store profile in the modulator info?
897-
898-
899-
if (D->profile == toupper(FFF_PROFILE)) {
900-
901-
/* ========== Faster for default values on slower processors. ========== */
902-
903-
m_sum1 = CALC_M_SUM1(D->ms_in_cb);
904-
m_sum2 = CALC_M_SUM2(D->ms_in_cb);
905-
m_amp = z(m_sum1,m_sum2);
906-
907-
s_sum1 = CALC_S_SUM1(D->ms_in_cb);
908-
s_sum2 = CALC_S_SUM2(D->ms_in_cb);
909-
s_amp = z(s_sum1,s_sum2);
910-
}
911-
else {
912-
913-
/* ========== General case to handle all situations. ========== */
914-
915786
/*
916787
* find amplitude of "Mark" tone.
917788
*/
@@ -928,9 +799,6 @@ void demod_afsk_process_sample (int chan, int subchan, int sam, struct demodulat
928799

929800
s_amp = sqrtf(s_sum1 * s_sum1 + s_sum2 * s_sum2);
930801

931-
/* ========== End of general case. ========== */
932-
}
933-
934802

935803
/*
936804
* Apply some low pass filtering BEFORE the AGC to remove
@@ -1240,7 +1108,4 @@ inline static void nudge_pll (int chan, int subchan, int slice, int demod_data,
12401108
} /* end nudge_pll */
12411109

12421110

1243-
#endif /* GEN_FFF */
1244-
1245-
12461111
/* end demod_afsk.c */

test/CMakeLists.txt

-4
Original file line numberDiff line numberDiff line change
@@ -127,8 +127,6 @@ add_executable(atest9
127127
${atest9_SOURCES}
128128
)
129129

130-
add_dependencies(atest9 gen_fff)
131-
132130
target_link_libraries(atest9
133131
${MISC_LIBRARIES}
134132
${REGEX_LIBRARIES}
@@ -529,8 +527,6 @@ if(OPTIONAL_TEST)
529527
${testagc_SOURCES}
530528
)
531529

532-
add_dependencies(testagc gen_fff)
533-
534530
target_link_libraries(testagc
535531
${MISC_LIBRARIES}
536532
${GPSD_LIBRARIES}

0 commit comments

Comments
 (0)