/***************************************************************************/ /* sendData.h (header file for sendData.c) */ /* Collection of function send data to PC via RS232 */ /* Author: Rich Chi Ooi */ /* Version: 1.0 */ /* Date:30.05.2003 */ /* ------------------------------- */ /* Compilation procedure: */ /* Linux */ /* gcc68 -c XXXXXX.c (to create object file) */ /* gcc68 -o XXXXXX.hex XXXXXX.o ppwa.o */ /***************************************************************************/ /* In this version: */ /***************************************************************************/ #include #include "eyebot.h" #ifndef sendData_h #define sendData_h /* *Sends a string to pc via RS232 */ void sendString(char s[]); /* *Sends characters back to the pc via RS232 */ void sendCharacter(char character); /* *Sends Integers to pc via RS232 */ void sendInteger(int integer); #endif