Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Diff: mfs.h
- Revision:
- 6:dd3346914d42
- Parent:
- 5:a0fe74dce80d
- Child:
- 7:5ac5121bb4e0
diff -r a0fe74dce80d -r dd3346914d42 mfs.h --- 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;