uses armmath has two swithcable filters

Dependencies:   FastAnalogIn mbed-dsp mbed

Revision:
0:888888c9f065
diff -r 000000000000 -r 888888c9f065 LowPass.c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/LowPass.c	Wed Apr 23 18:23:58 2014 +0000
@@ -0,0 +1,15 @@
+/* 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
+};
\ No newline at end of file