uses armmath has two swithcable filters

Dependencies:   FastAnalogIn mbed-dsp mbed

LowPass.c

Committer:
Clocktop
Date:
2014-04-23
Revision:
0:888888c9f065

File content as of revision 0:888888c9f065:

/* LowPass.c                           */
/* FIR filter coefficients              */
/* exported by MATLAB using FIR_dump2c  */
/* Michael G. Morrow - 2000, 2003       */


#include "LowPass.h"

float B[N+1] = {
1,
0,
0,
0,
.3
};