mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 22:35:41 +00:00
avoid oversaturation decoder errors at high SNR
This commit is contained in:
parent
359a38ad6e
commit
ad3cf75925
1 changed files with 2 additions and 0 deletions
|
|
@ -567,6 +567,8 @@ struct Decoder
|
|||
// precision = 8;
|
||||
value snr = DSP::decibel(precision);
|
||||
std::cerr << " " << snr;
|
||||
if (std::is_same<code_type, int8_t>::value && precision > 32)
|
||||
precision = 32;
|
||||
for (int i = 0; i < cons_cols; ++i) {
|
||||
if (oper_mode > 25 && i % comb_dist == comb_off)
|
||||
continue;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue