FATFS and PETITFS compile error fix (caused by prior file renaming).

remotes/origin_old/ugfx_release_2.6
inmarket 2014-09-17 09:32:09 +10:00
parent 036ad5d3dd
commit c28c4645c0
3 changed files with 3 additions and 3 deletions

View File

@ -14,7 +14,7 @@
#if GFX_USE_GFILE && GFILE_NEED_FATFS #if GFX_USE_GFILE && GFILE_NEED_FATFS
#include "gfile_fs.h" #include "gfile_fs.h"
#include "fatfs_wrapper.h" #include "gfile_fatfs_wrapper.h"
/******************************************************** /********************************************************
* The FAT file-system VMT * The FAT file-system VMT

View File

@ -14,7 +14,7 @@
#if GFX_USE_GFILE && GFILE_NEED_PETITFS #if GFX_USE_GFILE && GFILE_NEED_PETITFS
#include "gfile_fs.h" #include "gfile_fs.h"
#include "petitfs_wrapper.h" #include "gfile_petitfs_wrapper.h"
static bool_t petitfsExists(const char* fname); static bool_t petitfsExists(const char* fname);
static bool_t petitfsOpen(GFILE* f, const char* fname); static bool_t petitfsOpen(GFILE* f, const char* fname);

View File

@ -127,7 +127,7 @@
* @note PETITFS can only have one file open at a time. * @note PETITFS can only have one file open at a time.
*/ */
#ifndef GFILE_NEED_PETITFS #ifndef GFILE_NEED_PETITFS
#define GFILE_NEED_FATFS FALSE #define GFILE_NEED_PETITFS FALSE
#endif #endif
/** /**
* @brief Include the operating system's native file system * @brief Include the operating system's native file system