mirror of
https://github.com/armink/FreeModbus_Slave-Master-RTT-STM32.git
synced 2025-02-13 19:29:15 +08:00
2、【创建】Eclipse工程,并支持IAR插件调试 3、【创建】Keil工程,位于/RVMDK目录下 4、【创建】IAR工程,位于/EWARM目录下 5、【添加】RT-Thread1.1.1操作系统支持 6、【添加】LED1、LED2系统运行指示灯 7、【修改】Readdme.md文件 Signed-off-by: armink <armink.ztl@gmail.com>
14 lines
268 B
C
14 lines
268 B
C
#ifndef __RTT_STATFS_H__
|
|
#define __RTT_STATFS_H__
|
|
|
|
#include <rtthread.h>
|
|
|
|
struct statfs
|
|
{
|
|
rt_size_t f_bsize; /* block size */
|
|
rt_size_t f_blocks; /* total data blocks in file system */
|
|
rt_size_t f_bfree; /* free blocks in file system */
|
|
};
|
|
|
|
#endif
|