FCACHE
The type FAT_VI describes the FAT sector caching structure. The structure is defined in the file File_Config.h as follows:
typedef struct fcache {
U32 sect; /* Cached FAT sector number */
U8* buf; /* FAT sector cache buffer */
BIT dirty; /* FAT table content modified */
} FCACHE;
Example:
#include <file_config.h>
...
FCACHE fatChache;
...
...