eLua file systems

eLua file systems

You can compile and use more than one file system in eLua, as listed below:

  • the ROM file system: a very simple, very low footprint read-only file system that can be included in the eLua binary image. Check here for details.
  • the FAT file system: a read-write FAT file system implementation (platform independent) that can currently be used with SD/MMC memory cards. Check here for details. (new in 0.7)
  • the remote file system (RFS): a read-write file system that allows eLua to 'share' a directory on a PC, effectively accessing its contents as if it was a local file system. Check here for details. (new in 0.8)
  • the 'write once file system' (WOFS): a very low footprint, read-write filesystem with a catch: a file can be written only once, in a single shot. By default, WOFS uses the MCU's internal Flash as storage. Check here for details. (new in 0.9)