22 lines
348 B
C
22 lines
348 B
C
/*
|
|
* uart.h
|
|
*
|
|
* Created on: 26.11.2015
|
|
* Author: BlexTw11
|
|
*/
|
|
|
|
#ifndef UART_H_
|
|
#define UART_H_
|
|
|
|
#define UART_MAXSTRLEN 20
|
|
|
|
void UART_init(uint16_t baud_rate, char * buffer);
|
|
|
|
uint8_t UART_rx_char(void);
|
|
uint8_t UART_rx_str(void);
|
|
|
|
void UART_tx_char(uint8_t data);
|
|
void UART_tx_str(char * data);
|
|
|
|
#endif /* UART_H_ */
|