Changeset 581:2d38c2b64075

Show
Ignore:
Timestamp:
06/04/08 08:00:43 (7 months ago)
Author:
Maxime Petazzoni <maxime.petazzoni@…>
Branch:
default
Message:

Add doxygen group description for the file system.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • nxos/base/fs.h

    r575 r581  
    2222/*@{*/ 
    2323 
    24 /** @defgroup fs Flash file system */ 
     24/** @defgroup fs Flash file system 
     25 * 
     26 * A flash-friendly file system for the NXT on-board flash memory. This is a very simple 
     27 * file system implementation, allowing most of the basic features expected from a file 
     28 * system: open(), read(), write(), seek(), flush() and close(). Note that reading and 
     29 * writing use two different pointers. A seek() will move both of them. 
     30 * 
     31 * The file system also tries to minimize stress on the flash by progressively moving files 
     32 * needing more space towards the end of the flash medium. This relocation process happens 
     33 * automatically and may make one write operation rather costly (in terms of time). 
     34 * 
     35 * For more information, refer to the file system design document. 
     36 */ 
    2537/*@{*/ 
    2638