FATFS and PETITFS compile error fix (caused by prior file renaming).
This commit is contained in:
parent
036ad5d3dd
commit
c28c4645c0
3 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
|||
#if GFX_USE_GFILE && GFILE_NEED_FATFS
|
||||
|
||||
#include "gfile_fs.h"
|
||||
#include "fatfs_wrapper.h"
|
||||
#include "gfile_fatfs_wrapper.h"
|
||||
|
||||
/********************************************************
|
||||
* The FAT file-system VMT
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
#if GFX_USE_GFILE && GFILE_NEED_PETITFS
|
||||
|
||||
#include "gfile_fs.h"
|
||||
#include "petitfs_wrapper.h"
|
||||
#include "gfile_petitfs_wrapper.h"
|
||||
|
||||
static bool_t petitfsExists(const char* fname);
|
||||
static bool_t petitfsOpen(GFILE* f, const char* fname);
|
||||
|
|
|
@ -127,7 +127,7 @@
|
|||
* @note PETITFS can only have one file open at a time.
|
||||
*/
|
||||
#ifndef GFILE_NEED_PETITFS
|
||||
#define GFILE_NEED_FATFS FALSE
|
||||
#define GFILE_NEED_PETITFS FALSE
|
||||
#endif
|
||||
/**
|
||||
* @brief Include the operating system's native file system
|
||||
|
|
Loading…
Add table
Reference in a new issue