summaryrefslogtreecommitdiff
path: root/src/components/fs/FS.cpp
AgeCommit message (Collapse)AuthorFilesLines
2023-01-24src: Enable unused parameter warningRiku Isokoski1-3/+3
Fix warnings. Some clang-formatting was necessary. DebugPins is unused and was removed.
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 Davidson1-2/+2
2021-12-10Added move functionTim Keller1-1/+3
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 Keller1-17/+0
recursive. Better implemented on client side...
2021-12-10Remove mount/unmount. No longer neededTim Keller1-9/+1
2021-12-10Write worksTim Keller1-1/+3
2021-12-10Focus on getting flash access working properlyTim Keller1-2/+10
2021-12-10Added Delete fileTim Keller1-0/+4
Added FS Stat.
2021-12-10More reliable FS listingTim Keller1-1/+3
2021-12-10direcetory listings maybe?Tim Keller1-28/+35
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-07-11Using littlefs (#438)joaquim.org1-0/+197
* 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