1
0

char.h 441 B

12345678910111213141516171819
  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. #ifndef __CHAR_H__
  11. #define __CHAR_H__
  12. #include <rtdef.h>
  13. /* char device commands*/
  14. #define RT_DEVICE_CTRL_CHAR_STREAM (RT_DEVICE_CTRL_BASE(Char) + 1) /**< stream mode on char device */
  15. #endif /* __CHAR_H__ */