Final Project files for mBed development.

Dependencies:   m3pi mbed

Revision:
5:01882c3de2dc
Parent:
1:7e0243c27ecb
Child:
6:00b7198f0b51
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.c	Wed Nov 12 23:48:26 2014 -0500
@@ -0,0 +1,25 @@
+/**
+ * @file    driver.c
+ * @brief   Basic driver program for our robot's controller logic. 
+ *
+ * Maybe add lots of stuff here or maybe split it off into
+ * multiple subfiles?
+ *
+ * @author  John Wilkey
+ */
+#include "project.h"
+
+/** 
+ * These are global data Used externally in all other files 
+ */
+m3pi            pi;
+digi_out_pins   out_pins;
+
+/**
+ * @brief Entry point. Main loop.
+ */
+int main()
+{
+    pretty_print("PiCO");
+    return EXIT_SUCCESS;
+}