Name | Date | Size | #Lines | LOC | ||
---|---|---|---|---|---|---|
.. | 29-Oct-2021 | - | ||||
README.md | A D | 29-Oct-2021 | 609 | 20 | 15 | |
lfs1.c | A D | 29-Oct-2021 | 70.3 KiB | 2,584 | 1,980 | |
lfs1.h | A D | 29-Oct-2021 | 15.4 KiB | 502 | 203 | |
lfs1_util.c | A D | 29-Oct-2021 | 861 | 32 | 16 | |
lfs1_util.h | A D | 29-Oct-2021 | 5 KiB | 187 | 127 | |
lfs2.c | A D | 29-Oct-2021 | 159.2 KiB | 5,393 | 4,154 | |
lfs2.h | A D | 29-Oct-2021 | 22.6 KiB | 690 | 279 | |
lfs2_util.c | A D | 29-Oct-2021 | 866 | 34 | 17 | |
lfs2_util.h | A D | 29-Oct-2021 | 7 KiB | 235 | 168 |
README.md
1littlefs library 2================ 3 4The upstream source for the files in this directory is 5https://github.com/littlefs-project/littlefs 6 7To generate the separate files with lfs1 and lfs2 prefixes run the following 8commands in the top-level directory of the littlefs repository (replace the 9version tags with the latest/desired ones, and set `$MPY_DIR`): 10 11 git checkout v1.7.2 12 python2 ./scripts/prefix.py lfs1 13 cp lfs1*.[ch] $MPY_DIR/lib/littlefs 14 git reset --hard HEAD 15 16 git checkout v2.3.0 17 python2 ./scripts/prefix.py lfs2 18 cp lfs2*.[ch] $MPY_DIR/lib/littlefs 19 git reset --hard HEAD 20