File tree 1 file changed +11
-2
lines changed
1 file changed +11
-2
lines changed Original file line number Diff line number Diff line change 2
2
3
3
#ifndef FSK_DEMOD_STATE_H
4
4
5
+ #include <stdint.h> // int64_t
6
+
5
7
#include "rpack.h"
6
8
7
9
#include "audio.h" // for enum modem_t
@@ -43,8 +45,9 @@ typedef struct cic_s {
43
45
} cic_t ;
44
46
45
47
46
- #define MAX_FILTER_SIZE 404 /* 401 is needed for profile A, 300 baud & 44100. Revisit someday. */
47
-
48
+ #define MAX_FILTER_SIZE 480 /* 401 is needed for profile A, 300 baud & 44100. Revisit someday. */
49
+ // Size comes out to 417 for 1200 bps with 48000 sample rate
50
+ // v1.7 - Was 404. Bump up to 480.
48
51
49
52
struct demodulator_state_s
50
53
{
@@ -216,6 +219,12 @@ struct demodulator_state_s
216
219
signed int prev_d_c_pll ; // Previous value of above, before
217
220
// incrementing, to detect overflows.
218
221
222
+ int pll_symbol_count ; // Number symbols during time nudge_total is accumulated.
223
+ int64_t pll_nudge_total ; // Sum of DPLL nudge amounts.
224
+ // Both of these are cleared at start of frame.
225
+ // At end of frame, we can see if incoming
226
+ // baud rate is a little off.
227
+
219
228
int prev_demod_data ; // Previous data bit detected.
220
229
// Used to look for transitions.
221
230
float prev_demod_out_f ;
You can’t perform that action at this time.
0 commit comments