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 <avr/io.h>
|
|
#include "fifo.h"
|
|
|
|
extern Fifo_t uart0_rx_buffer;
|
|
extern Fifo_t uart0_tx_buffer;
|
|
|
|
|
|
void init_uart(void);
|
|
//void putchar(char c);
|
|
char get_uart0_char(void);
|
|
|
|
#endif
|