/* vi:set et ts=4 sw=4 ai ft=c ff=dos: */ #ifndef _USARTBlue_h_ #define _USARTBlue_h_ #define F_CPU 16000000UL #define USART_BAUDRATE 11500UL //9600UL #define BAUD_PRESCALE (((F_CPU / (USART_BAUDRATE * 16UL))) - 1) /* Include all header files here */ #include #include #include "lcd_io.h" #include "util/delay.h" /* Structures, typedefs etc. ... */ /* Extern declarations, prototypes etc. ... */ void BlueInit(); char BlueRdChar(); void BlueWrChar(char); void Waiting(int); #endif /* _USARTBlue_h_ */