Lines Matching full:is
14 **Power-loss resilience** - littlefs is designed to handle random power
16 power is lost the filesystem will fall back to the last known good state.
18 **Dynamic wear leveling** - littlefs is designed with flash in mind, and
22 **Bounded RAM/ROM** - littlefs is designed to work with a small amount of
23 memory. RAM usage is strictly bounded, which means RAM consumption does not
25 recursion and dynamic memory is limited to configurable buffers that can be
41 // configuration of the filesystem is provided by this struct
81 // remember the storage is not updated until the file is closed successfully
94 Detailed documentation (or at least as much detail as is currently available)
103 The state of the littlefs is stored in the `lfs_t` type which is left up
114 the filesystem until sync or close is called on the file.
118 Littlefs is written in C, and specifically should compile with any compiler
128 code of these functions, instead all data is read back and checked for
139 At a high level, littlefs is a block based filesystem that uses small logs to
204 The littlefs is provided under the [BSD-3-Clause] license. See
222 want this, but it is handy for demos. You can see it in action
228 - [Mbed OS] - The easiest way to get started with littlefs is to jump into Mbed
230 littlefs is available in Mbed OS as the [LittleFileSystem] class.