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