Final code for our 4180 Drawing Robot!

Dependencies:   4DGL-uLCD-SE gCodeParser mbed

Revision:
2:ba15545a4ccf
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/VStudio2013_Sources/talk_to_mbed.cpp	Wed Apr 30 16:40:10 2014 +0000
@@ -0,0 +1,17 @@
+// talk_to_mbed.cpp : Defines the entry point for the console application.
+//
+
+#include "stdafx.h"
+#include "listCOM.h"
+#include <cstdlib>
+
+//forward declaration of function defined in the SerialIO.cpp file
+int openConn();
+
+int _tmain(int argc, _TCHAR* argv[])
+{
+	listCOM();
+	wprintf(L"My port is %s\n", my_port);
+	openConn();
+	return 0;
+}