mirror of
https://github.com/aicodix/modem.git
synced 2026-04-27 14:30:34 +00:00
use 31 length MLS for pilots
This commit is contained in:
parent
b71926062d
commit
42ed10ea14
2 changed files with 2 additions and 2 deletions
|
|
@ -48,7 +48,7 @@ struct Decoder
|
|||
static const int symbols_max = 44;
|
||||
static const int mls0_poly = 0b1100110001;
|
||||
static const int mls0_seed = 214;
|
||||
static const int mls1_poly = 0b100101011;
|
||||
static const int mls1_poly = 0x25;
|
||||
static const int buffer_len = 5 * extended_len;
|
||||
static const int search_pos = extended_len;
|
||||
static const int pilot_tones = 32;
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@ struct Encoder
|
|||
static const int data_max = 4096;
|
||||
static const int mls0_poly = 0b1100110001;
|
||||
static const int mls0_seed = 214;
|
||||
static const int mls1_poly = 0b100101011;
|
||||
static const int mls1_poly = 0x25;
|
||||
static const int mls2_poly = 0b100101010001;
|
||||
static const int data_tones = 256;
|
||||
static const int pilot_tones = 32;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue