Fixing symbol generation (zero padding for FIR interpolation)

This commit is contained in:
Andy CA6JAU 2017-03-31 01:26:07 -03:00
parent a033ee66fd
commit 546243eec6
3 changed files with 10 additions and 10 deletions

View file

@ -44,10 +44,10 @@ static q15_t P25_LP_FILTER[] = {170, 401, 340, -203, -715, -478, 281, 419, -440,
281, -478, -715, -203, 340, 401, 170};
const uint16_t P25_LP_FILTER_LEN = 44U;
const q15_t P25_LEVELA[] = { 495, 495, 495, 495, 495};
const q15_t P25_LEVELB[] = { 165, 165, 165, 165, 165};
const q15_t P25_LEVELC[] = {-165, -165, -165, -165, -165};
const q15_t P25_LEVELD[] = {-495, -495, -495, -495, -495};
const q15_t P25_LEVELA[] = { 2475, 0, 0, 0, 0};
const q15_t P25_LEVELB[] = { 825, 0, 0, 0, 0};
const q15_t P25_LEVELC[] = {-825, 0, 0, 0, 0};
const q15_t P25_LEVELD[] = {-2475, 0, 0, 0, 0};
const uint8_t P25_START_SYNC = 0x77U;