Attempt to fix a bug related to BeRTOS upgrade in Wizard
[bertos.git] / bertos / fs / fat.h
index d0da925d75ce113595837ea92513bd0592b2db89..0dd1529f752568e36df92fedbae4a0a07cbd0853 100644 (file)
@@ -32,6 +32,9 @@
  *
  * \brief FatFS: kfile interface for FatFS module by ChaN.
  *
+ * This driver needs some low level hardware access functions. An example implementation
+ * is provided in sd.h.
+ *
  * \version $Id$
  *
  * \author Luca Ottaviano <lottaviano@develer.com>
@@ -65,6 +68,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);