10 lines
190 B
C
10 lines
190 B
C
|
#ifndef UART_H_INCLUDED
|
||
|
#define UART_H_INCLUDED
|
||
|
#include <stdint.h>
|
||
|
|
||
|
|
||
|
int uart2_setup(uint32_t bitrate, uint8_t data, char parity, uint8_t stop);
|
||
|
void uart2_write(const char *text);
|
||
|
|
||
|
#endif
|