Increase amplitude of the boxcar filter.

This commit is contained in:
Jonathan Naylor 2017-07-06 20:09:57 +01:00
parent 4b253f888d
commit de0aed2d2b
1 changed files with 1 additions and 1 deletions

2
IO.cpp
View File

@ -23,7 +23,7 @@
#include "IO.h"
// One symbol boxcar filter
static q15_t BOXCAR_FILTER[] = {6000, 6000, 6000, 6000, 6000, 0};
static q15_t BOXCAR_FILTER[] = {12000, 12000, 12000, 12000, 12000, 0};
const uint16_t BOXCAR_FILTER_LEN = 6U;
const uint16_t DC_OFFSET = 2048U;