You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
427 B
22 lines
427 B
/*
|
|
* 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_
|
|
|