Display_Avr_3/uart.h

13 lines
233 B
C

#ifndef UART_H
#define UART_H
#include <stdint.h>
#include <stddef.h>
#define F_CPU 16000000
void UART_init(void);
void UART_send(uint8_t* data, size_t length);
int UART_receive(uint8_t* data, size_t length);
#endif /* UART_H */