DSP program for the Surfboard hardware (PCB to be open sourced) http://www.avbotz.com/ourauv/electrical/signal-processing/

Dependencies:   MODDMA SimpleIOMacros mbed-dsp mbed

Revision:
0:2381a319fc35
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/surfboard.h	Fri Aug 02 02:23:36 2013 +0000
@@ -0,0 +1,25 @@
+#ifndef SURFBOARD_H__
+#define SURFBOARD_H__
+
+#include "mbed.h"
+#include "dsp.h"
+
+#include "dma.h"
+#include "hydro_dsp.h"
+
+void pre_setup();
+int setup();
+int setup_ads1274();
+
+void teardown();
+void teardown_ads1274();
+
+void submarine_cb();
+void abat_cb();
+void led1_cb();
+
+extern Serial submarine;
+extern DigitalOut led1, led2, led3, led4;
+extern uint32_t led1num, led2num, led3num, led4num;
+
+#endif