10 lines
202 B
C
10 lines
202 B
C
#ifndef MYUART_H
|
|
#define MYUART_H
|
|
#include "stm32f10x.h"
|
|
|
|
void MyUART_init(void);
|
|
void UART_send(char data);
|
|
void MyUART_ActiveIT(char Prio, void (*IT_function)(void));
|
|
char UART_receive(void);
|
|
|
|
#endif
|