SmallFS library
What is SmallFS ?
SmallFS is a read-only, small overhead filesystem intented for embedded systems, and suitable for use on SPI flash devices.
The basic code size is around 900 bytes on ZPUino
What are advantages and disadvantages?
Advantages:- Position-independent location. Can be put on any stream-capable device, at any position. Can also be used with memory-mapped systems
- Very low overhead, compared to other filesystems like FAT16
- Very easy to use.
- Optionally aligned to any size
- Read-only. You need to regenerate filesystem and fully reprogram it (like you do with CDROM filesystems
- No directory support, only plain files
- 2Gib limit on file size, and on filesystem size
- 256-char limit on file names
Technical details ?
SmallFS uses a very simple layout. The filesystem is composed of an header, a central directory, and the files themselves.
All fields on SmallFS are big-endian.
SmallFS header
SmallFS header is 8-bytes long and includes the filesystem magic and the number of files packed in the filesystem.
The directory
Each directory entry is variable sized, and includes the header plus the file name. The file name is not NULL terminated.
The offset field depicts the file contents offset relative to the start of the filesystem
Following the header, the file name will be stored, with size given by the namesize field.
The file contents
All files will be appended after the directory entries. You should use offset field (and add it to filesystem offset) to find out where files are stored
.The library
A ready-to-use library is provided to integrate SmallFS in ZPUino.
These two methods are the only one you need to use on the base class.
The SmallFS.begin() method returns 0 on success, or -1 otherwise. It only fails if no filesystem is found.
In order to open a file, just call the open() method.
The SmallFSFile class interface is described below:
Tools
A set of tools are provided to create the filesystem, and to extract and/or dump its contents.
Integration
The current IDE (Alpha5+) can detect SmallFS and generate automatically its contents and program it after the sketch binary.
All you have to do is to create a directory in your sketch folder with name smallfs, put your files in it, and the IDE will recognise it and program the flash accordingly