myFile.h 309 B

123456789101112131415
  1. #ifndef __MYFILE_H
  2. #define __MYFILE_H
  3. #include "main.h"
  4. #include "ff.h" /* Declarations of FatFs API */
  5. void write_file(const char* filename, const char* data, uint32_t length);
  6. void read_file(const char* filename, char* data);
  7. void ViewRootDir(void);
  8. void DeleteDirFile(const char* filename);
  9. #endif