00001 00007 /* avr-lrs.h 00008 * 00009 * Created on: 07.03.2009 00010 * Author: tst 00011 */ 00012 00013 #ifndef UART_B_H_ 00014 #define UART_B_H_ 00015 00016 #include <avr/io.h> 00017 00022 void init_uart_block_default(void); 00028 void init_uart_block(uint16_t ubrr); 00029 00033 void putc_b(unsigned char); 00034 00035 00041 void puts_b(char * string); 00042 00048 void puts_data_b(uint8_t * string, uint8_t length); 00049 00055 unsigned char getc_b(); 00056 00057 00058 00059 00060 00061 00062 #endif /* UART_B_H_ */