JGtoJR

Dependencies:   MODSERIAL Watchdog

Revision:
0:1c1c9f47b8ad
diff -r 000000000000 -r 1c1c9f47b8ad main.h
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.h	Thu Jun 15 12:01:36 2017 +0000
@@ -0,0 +1,29 @@
+#ifndef _main_H_
+#define _main_H_
+
+#include "mbed.h"
+#include "PC.h"
+#include "GV.h"
+#include "Watchdog.h"
+
+Watchdog wd;
+
+GV gv;
+
+void PCEventHandler(int e, char *data);
+PC pc(&gv, NC, USBTX, USBRX, PCEventHandler);
+
+char InitialMessage[50];
+
+void GetConfig(void);
+void Setup(void);
+void GetDate(void);
+
+//LocalFileSystem local("local");
+
+#endif /* _main_H_ */
+
+
+
+
+