23 lines
389 B
C
23 lines
389 B
C
|
/*
|
||
|
* Copyright (c)
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*
|
||
|
* Change Logs:
|
||
|
* Date Author Email Notes
|
||
|
* 2019-07-16 Kevin.Liu kevin.liu.mchp@gmail.com First Release
|
||
|
*/
|
||
|
|
||
|
#ifndef __BOARD_SERIAL_H_
|
||
|
#define __BOARD_SERIAL_H_
|
||
|
|
||
|
#include <rtthread.h>
|
||
|
|
||
|
/**
|
||
|
* @brief External function definitions
|
||
|
*
|
||
|
*/
|
||
|
int rt_hw_uart_init(void);
|
||
|
|
||
|
#endif // __BOARD_SERIAL_H_
|