@@ -309,10 +309,6 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
309
309
D -> lp_window = BP_WINDOW_TRUNCATED ;
310
310
}
311
311
312
- D -> agc_fast_attack = 0.820 ;
313
- D -> agc_slow_decay = 0.000214 ;
314
- D -> agc_fast_attack = 0.45 ;
315
- D -> agc_slow_decay = 0.000195 ;
316
312
D -> agc_fast_attack = 0.70 ;
317
313
D -> agc_slow_decay = 0.000090 ;
318
314
@@ -372,10 +368,16 @@ void demod_afsk_init (int samples_per_sec, int baud, int mark_freq,
372
368
// For scaling phase shift into normallized -1 to +1 range for mark and space.
373
369
D -> u .afsk .normalize_rpsam = 1.0 / (0.5 * abs (mark_freq - space_freq ) * 2 * M_PI / samples_per_sec );
374
370
371
+ // New "B" demodulator does not use AGC but demod.c needs this to derive "quick" and
372
+ // "sluggish" values for overall signal amplitude. That probably should be independent
373
+ // of these values.
374
+ D -> agc_fast_attack = 0.70 ;
375
+ D -> agc_slow_decay = 0.000090 ;
376
+
375
377
D -> pll_locked_inertia = 0.74 ;
376
378
D -> pll_searching_inertia = 0.50 ;
377
379
378
- D -> alevel_mark_peak = -1 ; // FIXME: disable display
380
+ D -> alevel_mark_peak = -1 ; // Disable received signal (m/s) display.
379
381
D -> alevel_space_peak = -1 ;
380
382
break ;
381
383
@@ -868,6 +870,7 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
868
870
{
869
871
D -> slicer [slice ].prev_d_c_pll = D -> slicer [slice ].data_clock_pll ;
870
872
873
+
871
874
// Perform the add as unsigned to avoid signed overflow error.
872
875
D -> slicer [slice ].data_clock_pll = (signed )((unsigned )(D -> slicer [slice ].data_clock_pll ) + (unsigned )(D -> pll_step_per_sample ));
873
876
@@ -901,7 +904,15 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
901
904
902
905
#endif
903
906
907
+
908
+ #if 1
904
909
hdlc_rec_bit (chan , subchan , slice , demod_out > 0 , 0 , quality );
910
+ #else // TODO: new feature to measure data speed error.
911
+ // Maybe hdlc_rec_bit could provide indication when frame starts.
912
+ hdlc_rec_bit_new (chan , subchan , slice , demod_out > 0 , 0 , quality ,
913
+ & (D -> slicer [slice ].pll_nudge_total ), & (D -> slicer [slice ].pll_symbol_count ));
914
+ D -> slicer [slice ].pll_symbol_count ++ ;
915
+ #endif
905
916
pll_dcd_each_symbol2 (D , chan , subchan , slice );
906
917
}
907
918
@@ -912,12 +923,14 @@ static void nudge_pll (int chan, int subchan, int slice, float demod_out, struct
912
923
913
924
pll_dcd_signal_transition2 (D , slice , D -> slicer [slice ].data_clock_pll );
914
925
926
+ // TODO: signed int before = (signed int)(D->slicer[slice].data_clock_pll); // Treat as signed.
915
927
if (D -> slicer [slice ].data_detect ) {
916
928
D -> slicer [slice ].data_clock_pll = (int )(D -> slicer [slice ].data_clock_pll * D -> pll_locked_inertia );
917
929
}
918
930
else {
919
931
D -> slicer [slice ].data_clock_pll = (int )(D -> slicer [slice ].data_clock_pll * D -> pll_searching_inertia );
920
932
}
933
+ // TODO: D->slicer[slice].pll_nudge_total += (int64_t)((signed int)(D->slicer[slice].data_clock_pll)) - (int64_t)before;
921
934
}
922
935
923
936
/*
0 commit comments