mirror of
https://github.com/RT-Thread/rt-thread.git
synced 2026-03-24 01:09:47 +08:00
20 lines
441 B
C
20 lines
441 B
C
/*
|
|
* 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__ */
|