mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
need higher precision values to make QAM4096 work
This commit is contained in:
parent
c0fedcbc57
commit
d4c517337c
1 changed files with 1 additions and 1 deletions
|
|
@ -371,7 +371,7 @@ struct Decoder : Common
|
|||
}
|
||||
value precision = sp / np;
|
||||
snr[j] = precision;
|
||||
precision = std::min(precision, value(127));
|
||||
precision = std::min(precision, value(1023));
|
||||
for (int i = 0; i < tone_count; ++i) {
|
||||
if (i % block_length != head_off && i % block_length != tail_off) {
|
||||
int bits = mod_bits;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue