Files
TencentOS-tiny/board/GD32F310G_START/BSP/Inc/usart.h
2022-04-15 15:55:43 +08:00

26 lines
551 B
C

/******************************************************************************
* File: usart.h
*
* Author: iysheng@163.com
* Created: 04/14/22
* Description:
*****************************************************************************/
#ifndef __USART_H__
#define __USART_H__
#ifdef __cplusplus
extern "C" {
#endif
#include "gd32f3x0_libopt.h"
/**
* @brief 板级 usart 硬件初始化
* @param void:
* retval N/A.
*/
int board_usart_init(void);
#ifdef __cplusplus
}
#endif
#endif /*__USART_H__ */