21 lines
280 B
C
21 lines
280 B
C
/*
|
|
* uart.h
|
|
*
|
|
* Created on: 26.11.2015
|
|
* Author: BlexTw11
|
|
*/
|
|
|
|
#ifndef UART_H_
|
|
#define UART_H_
|
|
|
|
|
|
void UART_init(uint16_t baud_rate);
|
|
|
|
uint8_t UART_rx_char(void);
|
|
|
|
void UART_tx_char(uint8_t data);
|
|
|
|
void UART_tx_str(char * data);
|
|
|
|
#endif /* UART_H_ */
|