:orphan: .. title:: CONFIG_FS_LITTLEFS_READ_SIZE .. kconfig:: CONFIG_FS_LITTLEFS_READ_SIZE CONFIG_FS_LITTLEFS_READ_SIZE ############################ *Minimum size of a block read* Type: ``int`` Help ==== .. code-block:: none All read operations will be a multiple of this value. Direct dependencies =================== \ :kconfig:`FILE_SYSTEM_LITTLEFS ` && \ :kconfig:`FILE_SYSTEM ` *(Includes any dependencies from ifs and menus.)* Default ======= - 16 Kconfig definition ================== At ``/fs/Kconfig.littlefs:31`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:25`` → ``/fs/Kconfig:61`` Menu path: (Top) → Sub Systems and OS Services → File Systems → File system support → LittleFS support → LittleFS Settings .. code-block:: kconfig config FS_LITTLEFS_READ_SIZE int "Minimum size of a block read" if FILE_SYSTEM_LITTLEFS default 16 depends on FILE_SYSTEM_LITTLEFS && FILE_SYSTEM help All read operations will be a multiple of this value. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*