Generation 3 of the Harp project

Dependencies:   Servo TMP36 GZ buffered-serial1 chan_fatfs_sd nmea_parser watchdog mbed-rtos mbed

Fork of HARP2 by Tyler Weaver

Revision:
4:d47805009bbd
Child:
5:8444ec4245e7
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/openLog/openLog.h	Thu Feb 23 04:24:23 2012 +0000
@@ -0,0 +1,18 @@
+#ifndef OPEN_LOG
+#define OPEN_LOG
+
+#include "mbed.h"
+
+class Logger {
+public:
+
+    Logger(PinName tx, PinName rx, PinName reset);
+
+    void newFile(void);
+    int write(char*);
+
+private:
+    Serial _openLog;
+    DigitalOut _reset_pin;
+};
+#endif
\ No newline at end of file