mFS file system library for EEPROM memory chips.

Revision:
6:dd3346914d42
Parent:
5:a0fe74dce80d
Child:
7:5ac5121bb4e0
--- a/mfs.h	Mon Feb 21 18:26:27 2011 +0000
+++ b/mfs.h	Mon Feb 21 18:34:40 2011 +0000
@@ -35,11 +35,11 @@
 
 #include "i2c_eeprom.h"
 
-const unsigned int VOL_SIZE=65536; /** EEPROM chip size in bytes */
-const unsigned int BS=1024; /** How many bytes per block (default: 4096 bytes) */
+const unsigned int VOL_SIZE=65536; /**< EEPROM chip size in bytes */
+const unsigned int BS=1024; /**< How many bytes per block (default: 4096 bytes) */
 const unsigned int BC=VOL_SIZE / BS; // 128 blocks
 const char mEOF='\x01'; // End Of File/Section marked
-const unsigned int BUF=400; /** File buffer length */
+const unsigned int BUF=400; /**< File buffer length */
 
 typedef unsigned short int uint16;