:orphan: .. title:: DISK_FLASH_MAX_RW_SIZE .. option:: CONFIG_DISK_FLASH_MAX_RW_SIZE *Flash device max read-write size in decimal* Type: ``int`` Help ==== This is the maximum number of bytes that the flash_write API can accept per invocation. API. Direct dependencies =================== (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`BOARD_DEGU_EVK `) || (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`SOC_FLASH_NIOS2_QSPI ` && \ :option:`FLASH ` && \ :option:`BOARD_ALTERA_MAX10 `) || (\ :option:`DISK_ACCESS_FLASH ` && \ :option:`DISK_ACCESS `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - 4 - 256 Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/degu_evk/Kconfig.defconfig:47`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config DISK_FLASH_MAX_RW_SIZE int default 4 depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`BOARD_DEGU_EVK ` ---- At ``boards/nios2/altera_max10/Kconfig.defconfig:26`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config DISK_FLASH_MAX_RW_SIZE int default 256 depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`SOC_FLASH_NIOS2_QSPI ` && \ :option:`FLASH ` && \ :option:`BOARD_ALTERA_MAX10 ` ---- At ``subsys/disk/Kconfig:62`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:19`` Menu path: (Top) → Sub Systems and OS Services → Disk Interface → Flash .. parsed-literal:: config DISK_FLASH_MAX_RW_SIZE int "Flash device max read-write size in decimal" depends on \ :option:`DISK_ACCESS_FLASH ` && \ :option:`DISK_ACCESS ` help This is the maximum number of bytes that the flash_write API can accept per invocation. API. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*