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_
|
|
|
|
#include <stdio.h>
|
|
|
|
#define BAUD 9600
|
|
#define BAUDRATE ((F_CPU)/(BAUD*16UL)-1)
|
|
|
|
void uart_init (void);
|
|
void read_sync(char buffer[], uint8_t buffersize, uint8_t * bufferindex);
|
|
|
|
#endif
|
|
|