1 /* 2 * Copyright (c) 2006-2023, RT-Thread Development Team 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 * 6 * Change Logs: 7 * Date Author Notes 8 * 2023-10-11 zmshahaha move from <rtdef.h> 9 */ 10 11 #ifndef __CHAR_H__ 12 #define __CHAR_H__ 13 14 #include <rtdef.h> 15 16 /* char device commands*/ 17 #define RT_DEVICE_CTRL_CHAR_STREAM (RT_DEVICE_CTRL_BASE(Char) + 1) /**< stream mode on char device */ 18 19 #endif /* __CHAR_H__ */ 20