:orphan: .. title:: CONFIG_FLASH_SIMULATOR_UNALIGNED_READ .. kconfig:: CONFIG_FLASH_SIMULATOR_UNALIGNED_READ CONFIG_FLASH_SIMULATOR_UNALIGNED_READ ##################################### *Allow read access to be unaligned* Type: ``bool`` Help ==== .. code-block:: none If selected, the reading operation does not check if access is aligned. Disable this option only if you want to simulate a specific FLASH interface that requires aligned read access. Direct dependencies =================== \ :kconfig:`FLASH_SIMULATOR ` && \ :kconfig:`FLASH ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== At ``/flash/Kconfig.simulator:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:42`` → ``/Kconfig:62`` → ``/flash/Kconfig:89`` Menu path: (Top) → Device Drivers → Flash hardware support → Flash simulator .. code-block:: kconfig config FLASH_SIMULATOR_UNALIGNED_READ bool "Allow read access to be unaligned" default y depends on FLASH_SIMULATOR && FLASH help If selected, the reading operation does not check if access is aligned. Disable this option only if you want to simulate a specific FLASH interface that requires aligned read access. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*