63
63
#define MAX (a ,b ) ((a)>(b)?(a):(b))
64
64
65
65
66
- #ifndef GEN_FFF
67
-
68
66
/* Quick approximation to sqrt(x*x+y*y) */
69
67
/* No benefit for regular PC. */
70
68
/* Should help with microcomputer platform. */
@@ -137,8 +135,6 @@ static inline float agc (float in, float fast_attack, float slow_decay, float *p
137
135
return (0.0f );
138
136
}
139
137
140
- #endif // ifndef GEN_FFF
141
-
142
138
143
139
/*
144
140
* for multi-slicer experiment.
@@ -197,27 +193,11 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
197
193
#endif
198
194
199
195
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
-
215
196
D -> profile = profile ; // so we know whether to take fast path later.
216
197
217
198
switch (profile ) {
218
199
219
200
case 'A' :
220
- case 'F' :
221
201
222
202
/* Original. 52 taps, truncated bandpass, IIR lowpass */
223
203
/* '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,
317
297
D -> pll_searching_inertia = 0.350 ;
318
298
break ;
319
299
300
+ case 'F' : // removed obsolete. treat as E for now.
320
301
case 'E' :
321
302
322
303
/* 1200 baud - Started out similar to C but add prefilter. */
@@ -686,98 +667,17 @@ failed experiment
686
667
space_gain [j ] = space_gain [j - 1 ] * step ;
687
668
}
688
669
689
- #ifndef GEN_FFF
690
670
#if 0
691
671
text_color_set (DW_COLOR_DEBUG );
692
672
for (j = 0 ; j < MAX_SUBCHANS ; j ++ ) {
693
673
float db = 20.0 * log10f (space_gain [j ]);
694
674
dw_printf ("G = %.3f, %+.1f dB\n" , space_gain [j ], db );
695
675
}
696
676
#endif
697
- #endif
698
677
699
678
} /* fsk_gen_filter */
700
679
701
680
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
-
781
681
782
682
/*-------------------------------------------------------------------
783
683
*
@@ -881,37 +781,8 @@ void demod_afsk_process_sample (int chan, int subchan, int sam, struct demodulat
881
781
882
782
/*
883
783
* 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.
892
784
*/
893
785
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
-
915
786
/*
916
787
* find amplitude of "Mark" tone.
917
788
*/
@@ -928,9 +799,6 @@ void demod_afsk_process_sample (int chan, int subchan, int sam, struct demodulat
928
799
929
800
s_amp = sqrtf (s_sum1 * s_sum1 + s_sum2 * s_sum2 );
930
801
931
- /* ========== End of general case. ========== */
932
- }
933
-
934
802
935
803
/*
936
804
* 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,
1240
1108
} /* end nudge_pll */
1241
1109
1242
1110
1243
- #endif /* GEN_FFF */
1244
-
1245
-
1246
1111
/* end demod_afsk.c */
0 commit comments