| 12345678910111213141516171819 |
- /*
- * 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 __MTD_H__
- #define __MTD_H__
- #include <rtdef.h>
- /* mtd interface device*/
- #define RT_DEVICE_CTRL_MTD_FORMAT (RT_DEVICE_CTRL_BASE(MTD) + 1) /**< format a MTD device */
- #endif /* __MTD_H__ */
|