mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2025-01-16 07:39:21 +08:00
17 lines
299 B
C
17 lines
299 B
C
/*
|
|
* Copyright (c) 2020, Shenzhen Academy of Aerospace Technology
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2020-10-16 Dystopia the first version
|
|
*/
|
|
|
|
#ifndef __SERIAL_H__
|
|
#define __SERIAL_H__
|
|
|
|
int rt_hw_serial_init(void);
|
|
|
|
#endif
|