X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Ffs%2Ffat.h;h=34b20bbac1a7e2725fd562264984857384509ae0;hb=d9d95af77b73deb9a3a923a2dbf4013602770ebd;hp=e407c1ba6890b8612e15c8d2787809a6a3e1e02f;hpb=4dd546b5af72301784b05bd2ea7e6ffeb4475c87;p=bertos.git diff --git a/bertos/fs/fat.h b/bertos/fs/fat.h index e407c1ba..34b20bba 100644 --- a/bertos/fs/fat.h +++ b/bertos/fs/fat.h @@ -46,7 +46,7 @@ #define FS_FAT_H #include -#include "fatfs/src/ff.h" +#include "fatfs/ff.h" typedef struct FatFile { @@ -65,6 +65,10 @@ INLINE FatFile * FATFILE_CAST(KFile *fd) /** * Initialize \a file and open \a file_path for reading. + * \param file A pointer to a FatFile structure. + * \param file_path The file path on the filesystem. + * \param mode Open mode for the file. + * \sa ff.h for return code meaning and \a mode flags. */ FRESULT fatfile_open(FatFile *file, const char *file_path, BYTE mode);