myFile.h 326 B

1234567891011121314
  1. #ifndef __MYFILE_H
  2. #define __MYFILE_H
  3. #include "bsp.h"
  4. #include "ff.h" /* FatFSÎļþϵͳģ¿é*/
  5. #include "demo_nand_fatfs.h"
  6. void write_file(const char* filename, const char* data, uint32_t length);
  7. void read_file(const char* filename, char* data);
  8. void ViewRootDir(void);
  9. void DeleteDirFile(const char* filename);
  10. #endif