This commit is contained in:
jaseg 2020-03-09 13:47:08 +01:00
commit 000ced2b54
4 changed files with 40 additions and 40 deletions

View file

@ -37,6 +37,9 @@ struct matcher_state {
float last_score;
float candidate_score;
int last_skips;
int candidate_skips;
#if DSSS_GOLD_CODE_NBITS > 7
#error DSSS_GOLD_CODE_NBITS is too large for matcher_state.data data type (uint8_t)
#endif
@ -52,7 +55,7 @@ struct dsss_demod_state {
float correlation[DSSS_GOLD_CODE_COUNT][DSSS_WAVELET_LUT_SIZE];
size_t correlation_wpos;
struct cwt_iir_filter_state cwt_filter[DSSS_GOLD_CODE_COUNT];
struct cwt_iir_filter_state cwt_filter;
struct group group;