You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#ifndef _UART_H
|
|
#define _UART_H
|
|
|
|
#define BAUD 9600
|
|
#define MYUBRR F_CPU/16/BAUD-1
|
|
|
|
void USART_Init(unsigned int ubrr);
|
|
void USART_Transmit(unsigned char data );
|
|
void uart_puts( char* string);
|
|
int putchar(int c);
|
|
void search_i2c_devices(void);
|
|
|
|
#endif
|