Hayden Wisniewski / Mbed 2 deprecated 5CollabProj

Dependencies:   mbed

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers HostIO.cpp Source File

HostIO.cpp

00001 #include "HostIO.h"
00002 Serial pc(USBTX,USBRX);
00003 
00004 void HostInit(void){
00005     pc.printf("\n\rType two idgit numbers to be \n\r");
00006     }
00007     
00008     char GetKeyInput(void){
00009         char c = pc.getc();
00010         pc.printf("%c",c);
00011         return(c&0x0F);
00012         }