Skip to content

Commit 17d3d0a

Browse files
committed
Increase max AFSK filter size.
1 parent 07ea828 commit 17d3d0a

File tree

1 file changed

+11
-2
lines changed

1 file changed

+11
-2
lines changed

src/fsk_demod_state.h

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
#ifndef FSK_DEMOD_STATE_H
44

5+
#include <stdint.h> // int64_t
6+
57
#include "rpack.h"
68

79
#include "audio.h" // for enum modem_t
@@ -43,8 +45,9 @@ typedef struct cic_s {
4345
} cic_t;
4446

4547

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.
4851

4952
struct demodulator_state_s
5053
{
@@ -216,6 +219,12 @@ struct demodulator_state_s
216219
signed int prev_d_c_pll; // Previous value of above, before
217220
// incrementing, to detect overflows.
218221

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+
219228
int prev_demod_data; // Previous data bit detected.
220229
// Used to look for transitions.
221230
float prev_demod_out_f;

0 commit comments

Comments
 (0)