15 lines
156 B
C
15 lines
156 B
C
#ifndef _USART_H_
|
|
#define _USART_H_
|
|
|
|
#include "conf.h"
|
|
#define UBRR_VALUE (F_CPU/16/USART_BAUD-1)
|
|
|
|
void
|
|
usart_init(void);
|
|
|
|
|
|
int
|
|
usart_putc(char c);
|
|
|
|
#endif
|