Final code for our 4180 Drawing Robot!

Dependencies:   4DGL-uLCD-SE gCodeParser mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers talk_to_mbed.cpp Source File

talk_to_mbed.cpp

00001 // talk_to_mbed.cpp : Defines the entry point for the console application.
00002 //
00003 
00004 #include "stdafx.h"
00005 #include "listCOM.h"
00006 #include <cstdlib>
00007 
00008 //forward declaration of function defined in the SerialIO.cpp file
00009 int openConn();
00010 
00011 int _tmain(int argc, _TCHAR* argv[])
00012 {
00013     listCOM();
00014     wprintf(L"My port is %s\n", my_port);
00015     openConn();
00016     return 0;
00017 }