diff options
author | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-03-09 13:47:08 +0100 |
---|---|---|
committer | jaseg <git-bigdata-wsl-arch@jaseg.de> | 2020-03-09 13:47:08 +0100 |
commit | 000ced2b546e73c8b1e8a2b870173f5c2a5b5ca0 (patch) | |
tree | f281700d3596c8d6c9cd0b21c45645b7691ba9ee /controller/fw/src/dsss_demod.h | |
parent | 9debe084fca8992efdf0f08bfed343de0987629e (diff) | |
download | master-thesis-000ced2b546e73c8b1e8a2b870173f5c2a5b5ca0.tar.gz master-thesis-000ced2b546e73c8b1e8a2b870173f5c2a5b5ca0.tar.bz2 master-thesis-000ced2b546e73c8b1e8a2b870173f5c2a5b5ca0.zip |
foo
Diffstat (limited to 'controller/fw/src/dsss_demod.h')
-rw-r--r-- | controller/fw/src/dsss_demod.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/controller/fw/src/dsss_demod.h b/controller/fw/src/dsss_demod.h index b9e75d2..2e8c003 100644 --- a/controller/fw/src/dsss_demod.h +++ b/controller/fw/src/dsss_demod.h @@ -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; |