mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
reduced size of buffering
This commit is contained in:
parent
a9d4249ea5
commit
1987562651
1 changed files with 2 additions and 2 deletions
|
|
@ -177,8 +177,8 @@ struct Decoder
|
|||
static const int payload_symbols = 32;
|
||||
static const int first_subcarrier = 16;
|
||||
static const int cons_total = payload_symbols * subcarrier_count;
|
||||
static const int buffer_len = 6 * (symbol_len + guard_len);
|
||||
static const int search_pos = buffer_len - 4 * (symbol_len + guard_len);
|
||||
static const int buffer_len = 2 * symbol_len + guard_len;
|
||||
static const int search_pos = symbol_len;
|
||||
DSP::ReadPCM<value> *pcm;
|
||||
DSP::FastFourierTransform<symbol_len, cmplx, -1> fwd;
|
||||
DSP::BlockDC<value, value> blockdc;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue