| 12345678910111213141516171819202122 |
- #ifndef __SOFT_SDCARD_H
- #define __SOFT_SDCARD_H
- #include "ff.h"
- #include <stdint.h>
- extern FIL fnew_data, fnew_log; /* 文件对象 */
- extern FRESULT res_sd; /* 文件操作结果 */
- extern UINT frnum; /* 文件成功读数量 */
- extern UINT fwnum; /* 文件成功写数量 */
- extern DIR logdir;
- extern DIR posdir;
- extern FILINFO fno;
- uint8_t sdcard_initok(void);
- void sdcard_inital(uint8_t init_type);
- #endif
|