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.
19 lines
441 B
19 lines
441 B
/*
|
|
* Copyright (c) 2006-2023, RT-Thread Development Team
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Change Logs:
|
|
* Date Author Notes
|
|
* 2023-10-11 zmshahaha move from <rtdef.h>
|
|
*/
|
|
|
|
#ifndef __CHAR_H__
|
|
#define __CHAR_H__
|
|
|
|
#include <rtdef.h>
|
|
|
|
/* char device commands*/
|
|
#define RT_DEVICE_CTRL_CHAR_STREAM (RT_DEVICE_CTRL_BASE(Char) + 1) /**< stream mode on char device */
|
|
|
|
#endif /* __CHAR_H__ */
|
|
|