:orphan: .. title:: CONFIG_FS_MGMT_DL_CHUNK_SIZE_LIMIT .. kconfig:: CONFIG_FS_MGMT_DL_CHUNK_SIZE_LIMIT CONFIG_FS_MGMT_DL_CHUNK_SIZE_LIMIT ################################## *Enable setting custom size of download file chunk* Type: ``bool`` Help ==== .. code-block:: none By default file chunk, that will be read off storage and fit into mcumgr frame, is automatically calculated to fit into buffer of size MCUGMR_BUF_SIZE with all headers. Enabling this option allows to set MAXIMUM value that will be allowed for such chunk. Look inside fs_mgmt_config.h for details. Direct dependencies =================== \ :kconfig:`MCUMGR_CMD_FS_MGMT ` && \ :kconfig:`MCUMGR ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/mgmt/mcumgr/Kconfig:90`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:35`` → ``/mgmt/Kconfig:9`` Menu path: (Top) → Sub Systems and OS Services → Device Management → mcumgr Support → Command Handlers → Enable mcumgr handlers for file management (insecure) .. code-block:: kconfig config FS_MGMT_DL_CHUNK_SIZE_LIMIT bool "Enable setting custom size of download file chunk" depends on MCUMGR_CMD_FS_MGMT && MCUMGR help By default file chunk, that will be read off storage and fit into mcumgr frame, is automatically calculated to fit into buffer of size MCUGMR_BUF_SIZE with all headers. Enabling this option allows to set MAXIMUM value that will be allowed for such chunk. Look inside fs_mgmt_config.h for details. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*