summaryrefslogtreecommitdiff
path: root/src/components/fs
AgeCommit message (Collapse)AuthorFilesLines
2023-01-04Update clang-{format,tidy} to 14Finlay Davidson1-0/+5
Also add configuration options only available in 13 and 14. Fixes warning about -fstack-usage in clang-tidy check.
2022-06-05Apply clang-format to all C++ filesFinlay Davidson2-3/+3
2021-12-10Added move functionTim Keller2-1/+4
2021-12-10Fix lvgl_open to respect littlefs open errorsTim Keller1-7/+8
2021-12-10Remove DirDelete, implementation did not work and memory contraints are ↵Tim Keller2-18/+2
recursive. Better implemented on client side...
2021-12-10Remove mount/unmount. No longer neededTim Keller2-17/+8
2021-12-10Write worksTim Keller2-3/+9
2021-12-10Focus on getting flash access working properlyTim Keller2-25/+34
2021-12-10Added Delete fileTim Keller2-0/+5
Added FS Stat.
2021-12-10More reliable FS listingTim Keller2-1/+4
2021-12-10direcetory listings maybe?Tim Keller2-28/+38
Added LISTDIR command and notify responses.
2021-11-15Update includes to to be relative to src directoryReinhold Gschweicher1-1/+1
Don't use relative imports like `../foo.h` as those depend on the relative position of both files. Rather than that use imports relative to the `src` directory, which explicitly is part of the include directories.
2021-09-27Fix the size of the filesystem.Daniel Jackson1-1/+1
Correct typo: 0x400000 - 0x0B4000 = 0x34C000.
2021-07-11Using littlefs (#438)joaquim.org2-0/+268
* add submodule littlefs * base fs * Save settings using littlefs * Small fixes and suggestions from PR * More small fixes from PR suggestions * Code clean up * Change SpiNorFlash functions to be private in FS