Update lfs_find_free_blocks to match the latest changes.

This commit is contained in:
ondrap
2023-08-02 11:51:52 +02:00
committed by Christopher Haster
parent 1ba4ed03f0
commit b637379210
2 changed files with 21 additions and 10 deletions
+4
View File
@@ -712,6 +712,10 @@ lfs_ssize_t lfs_fs_size(lfs_t *lfs);
// Returns a negative error code on failure.
int lfs_fs_traverse(lfs_t *lfs, int (*cb)(void*, lfs_block_t), void *data);
// Use Traverse function and try to find free blocks. LittleFS free blocks search is unpredictable.
// Search is costly operation which may delay write. In realtime write scenarios can be better to find them before a write.
int lfs_find_free_blocks(lfs_t *lfs);
#ifndef LFS_READONLY
// Attempt to make the filesystem consistent and ready for writing
//