1234567891011121314 |
- #ifndef __MYFILE_H
- #define __MYFILE_H
- #include "bsp.h"
- #include "ff.h" /* FatFSÎļþϵͳģ¿é*/
- #include "demo_nand_fatfs.h"
- void write_file(const char* filename, const char* data, uint32_t length);
- void read_file(const char* filename, char* data);
- void ViewRootDir(void);
- void DeleteDirFile(const char* filename);
- #endif
|