00001 //********************************************************************************* 00002 // Device driver for Fat File System 00003 // 00004 // We use FatFS as an interface between the device driver and the SD Flash card 00005 // 00006 // Created Aug 12, 2008 00007 // 00008 //********************************************************************************** 00009 00010 #ifndef FATFSDEV__H 00011 #define FATFSDEV__H 00012 00013 #include "ff.h" 00014 00015 typedef struct { 00016 int mode; 00017 FIL *pF; 00018 }FF_DCB; 00019 00020 extern void FatFSInit(void); 00021 00022 #endif