Mercurial > hg > beaglert
view projects/filter_FIR/FIRfilter.h @ 23:182ae9367104 matrix_gpio
- persistency: the last frame of each digital and analogOut buffers is used to initialize all the frames in the next buffer. This means that once a value is set, the pin will hold the value until you change it
- AnalogXyz macros have been renamed to analogXyz
- the short option -P has been removed. The long option --pru-file has to be used instead
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Tue, 05 May 2015 17:28:00 +0100 |
parents | 021ac8a1a4f9 |
children |
line wrap: on
line source
/* * FIRfilter.h * * Created on: Aug 5, 2014 * Author: Victor Zappi and Andrew McPherson */ #ifndef FIRFILTER_H_ #define FIRFILTER_H_ #include <NE10.h> #define FILTER_TAP_NUM 31 // Coefficients for FIR High Pass Filter at 3 KHz ne10_float32_t filterTaps[FILTER_TAP_NUM] = { -0.000055, 0.000318, 0.001401, 0.003333, 0.005827, 0.007995, 0.008335, 0.004991, -0.003764, -0.018906, -0.040112, -0.065486, -0.091722, -0.114710, -0.130454, 0.863946, -0.130454, -0.114710, -0.091722, -0.065486, -0.040112, -0.018906, -0.003764, 0.004991, 0.008335, 0.007995, 0.005827, 0.003333, 0.001401, 0.000318, -0.000055 }; #endif /* FIRFILTER_H_ */