:orphan: .. title:: SRAM_SIZE .. option:: CONFIG_SRAM_SIZE *SRAM Size in kB* Type: ``int`` Help ==== The SRAM size in kB. The default value comes from /chosen/zephyr,sram in devicetree. The user should generally avoid changing it via menuconfig or in configuration files. Defaults ======== - 0 - 0 Kconfig definitions =================== .. highlight:: kconfig At ``boards/arm/nrf5340dk_nrf5340/Kconfig.defconfig:58`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:18`` Menu path: (Top) .. parsed-literal:: config SRAM_SIZE int default 0 depends on (\ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP `) && \ :option:`TRUSTED_EXECUTION_SECURE ` && (\ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340PDK_NRF5340_CPUAPPNS ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPP ` || \ :option:`BOARD_NRF5340DK_NRF5340_CPUAPPNS `) ---- At ``arch/Kconfig:147`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` Menu path: (Top) → General Architecture Options .. parsed-literal:: config SRAM_SIZE int "SRAM Size in kB" default 0 help The SRAM size in kB. The default value comes from /chosen/zephyr,sram in devicetree. The user should generally avoid changing it via menuconfig or in configuration files. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*