/* | ---------------------------------------------------------------------- | Filename: download_eye.c | | Author: Thomas Braunl, Aug. 2000 | | Description: | serial download: PC -> EyeBot | I/O with RoBiOS functions | ---------------------------------------------------------------------- */ #include "eyebot.h" int main () { char ch; LCDPrintf("Echoing PC data\n"); LCDMenu("","","","END"); OSInitRS232(SER9600, NONE, SERIAL1); while (KEYRead()!=KEY4) { OSRecvRS232(&ch, SERIAL1); LCDPutChar(ch); } return 0; }