:orphan: .. title:: FS_LITTLEFS_LOOKAHEAD_SIZE .. option:: CONFIG_FS_LITTLEFS_LOOKAHEAD_SIZE *Size of lookahead buffer in bytes* Type: ``int`` Help ==== A larger lookahead buffer increases the number of blocks found during an allocation pass. The lookahead buffer is stored as a compact bitmap, so each byte of RAM can track 8 blocks. Must be a multiple of 8. Direct dependencies =================== \ :option:`FILE_SYSTEM_LITTLEFS ` && \ :option:`FILE_SYSTEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 32 Kconfig definition ================== .. highlight:: kconfig At ``subsys/fs/Kconfig.littlefs:54`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:25`` → ``subsys/fs/Kconfig:61`` Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support → LittleFS support → LittleFS Settings .. parsed-literal:: config FS_LITTLEFS_LOOKAHEAD_SIZE int "Size of lookahead buffer in bytes" if \ :option:`FILE_SYSTEM_LITTLEFS ` default 32 depends on \ :option:`FILE_SYSTEM_LITTLEFS ` && \ :option:`FILE_SYSTEM ` help A larger lookahead buffer increases the number of blocks found during an allocation pass. The lookahead buffer is stored as a compact bitmap, so each byte of RAM can track 8 blocks. Must be a multiple of 8. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*