/* ========================================================================== */ /* */ /* com1.c */ /* (c) 2006 Eva Li */ /* */ /* EX for function: COM1 */ /* */ /* ========================================================================== */ #include #include void main() { int quit=0,data; InitLib(); InstallCom1(115200,8,0,1); /* install COM1 driver */ while(!quit) { if(IsCom1()) { /*check if any data has in COM1*/ data=ReadCom1(); /*read data from COM1*/ ToCom1(data); /*send data to COM1*/ if(data=='q') quit=1; /*if receive 'q', exit program*/ } } RestoreCom1(); /* un-install COM1 driver */ }