use 31 length MLS for pilots

This commit is contained in:
Ahmet Inan 2025-07-01 23:19:36 +02:00
commit 42ed10ea14
2 changed files with 2 additions and 2 deletions

View file

@ -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;

View file

@ -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;