12 lines
148 B
C
12 lines
148 B
C
#ifndef __HW_UART_H__
|
|
#define __HW_UART_H__
|
|
|
|
#include "stm32f1xx_hal.h"
|
|
|
|
|
|
void UartInit( void );
|
|
|
|
void UartDeInit( void );
|
|
|
|
#endif // __HW_UART_H__
|