:orphan: .. title:: CONFIG_SRAM_VECTOR_TABLE .. kconfig:: CONFIG_SRAM_VECTOR_TABLE CONFIG_SRAM_VECTOR_TABLE ######################## *Place the vector table in SRAM instead of flash* Type: ``bool`` Help ==== .. code-block:: none The option specifies that the vector table should be placed at the start of SRAM instead of the start of flash. Defaults ======== - y - y Kconfig definitions =================== At ``/arm/st_stm32/stm32f0/Kconfig.defconfig.series:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:25`` → ``/kconfig/Kconfig.soc.defconfig:1`` → ``/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. code-block:: kconfig config SRAM_VECTOR_TABLE bool default y depends on SOC_SERIES_STM32F0X ---- At ``/arm/st_stm32/stm32f0/Kconfig.defconfig.series:15`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:27`` → ``/arm/st_stm32/Kconfig.defconfig:3`` Menu path: (Top) .. code-block:: kconfig config SRAM_VECTOR_TABLE bool default y depends on SOC_SERIES_STM32F0X ---- At ``Kconfig.zephyr:199`` Included via ``Kconfig:8`` Menu path: (Top) → Build and Link Features → Linker Options .. code-block:: kconfig config SRAM_VECTOR_TABLE bool "Place the vector table in SRAM instead of flash" help The option specifies that the vector table should be placed at the start of SRAM instead of the start of flash. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*