:orphan: .. title:: FLASH_SIMULATOR_STAT_PAGE_COUNT .. option:: CONFIG_FLASH_SIMULATOR_STAT_PAGE_COUNT *Pages under statistic* Type: ``int`` Help ==== Only up to this number of beginning pages will be tracked while catching dedicated flash operations and thresholds. This number is not automatic because implementation uses UNTIL_REPEAT() macro, which is limited to take explicitly number of iterations. This is why it's not possible to calculate the number of pages with preprocessor using DT properties. Direct dependencies =================== \ :option:`FLASH_SIMULATOR ` && \ :option:`FLASH ` *(Includes any dependencies from ifs and menus.)* Default ======= - 256 Kconfig definition ================== .. highlight:: kconfig At ``drivers/flash/Kconfig.simulator:40`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:32`` → ``drivers/Kconfig:60`` → ``drivers/flash/Kconfig:83`` Menu path: (Top) → Device Drivers → Flash hardware support → Flash simulator .. parsed-literal:: config FLASH_SIMULATOR_STAT_PAGE_COUNT int "Pages under statistic" range 1 256 default 256 depends on \ :option:`FLASH_SIMULATOR ` && \ :option:`FLASH ` help Only up to this number of beginning pages will be tracked while catching dedicated flash operations and thresholds. This number is not automatic because implementation uses UNTIL_REPEAT() macro, which is limited to take explicitly number of iterations. This is why it's not possible to calculate the number of pages with preprocessor using DT properties. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*