23 lines
427 B
C
23 lines
427 B
C
/*
|
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
|
*
|
|
* 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_
|