00001
00009
00010
00011
00012
00013
00014
00015 #ifndef UART_B_H_
00016 #define UART_B_H_
00017
00018 #include <avr/io.h>
00019
00026 void init_uart_block_default(void);
00034 void init_uart_block(uint16_t ubrr);
00035
00041 void putc_b(unsigned char);
00042
00043
00051 void puts_b(char * string);
00052
00060 void puts_data_b(uint8_t * string, uint8_t length);
00061
00067 unsigned char getc_b();
00068
00076 unsigned char getc_TO_b(char *c, int ms);
00077
00078
00079
00080
00081
00082
00083 #endif