// serialio.h // // Low Level Serial I/O routines (for AvrX) // // History: Created on May 1st 2002 by Stephane Gauthier. // December 31st 2002 - Stephane Gauthier - changed PutChar's return type to Int to satisfy fdevopen(). (printf) // // Function Name: InitSerialIO() // // Description: Initialize Serial I/O hardware. // // void InitSerialIO( unsigned int baud); // Function Name: PutChar() // // Description: Send character to serial port // // int PutChar(unsigned char data); // Function Name: GetChar() // // Description: Get a character from serial port // // unsigned char GetChar(void);