:orphan: .. title:: CONFIG_DYNAMIC_DIRECT_INTERRUPTS .. kconfig:: CONFIG_DYNAMIC_DIRECT_INTERRUPTS CONFIG_DYNAMIC_DIRECT_INTERRUPTS ################################ *Enable support for dynamic direct interrupts* Type: ``bool`` Help ==== .. code-block:: none Direct interrupts are designed for performance-critical interrupt handling and do not go through all of the common interrupt handling code. This option enables the installation of interrupt service routines for direct interrupts at runtime. Note: this requires enabling support for dynamic interrupts in the kernel. Direct dependencies =================== \ :kconfig:`DYNAMIC_INTERRUPTS ` && (\ :kconfig:`ARMV6_M_ARMV8_M_BASELINE ` || \ :kconfig:`ARMV7_M_ARMV8_M_MAINLINE `) && \ :kconfig:`CPU_CORTEX_M ` && \ :kconfig:`ARM ` *(Includes any dependencies from ifs and menus.)* Defaults ======== No defaults. Implicitly defaults to ``n``. Kconfig definition ================== At ``/arm/core/aarch32/cortex_m/Kconfig:298`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:39`` → ``/Kconfig:12`` → ``/arm/Kconfig:57`` → ``/arm/core/aarch32/Kconfig:294`` Menu path: (Top) → ARM Options → ARM Cortex-M0/M0+/M1/M3/M4/M7/M23/M33 options .. code-block:: kconfig config DYNAMIC_DIRECT_INTERRUPTS bool "Enable support for dynamic direct interrupts" depends on DYNAMIC_INTERRUPTS && (ARMV6_M_ARMV8_M_BASELINE || ARMV7_M_ARMV8_M_MAINLINE) && CPU_CORTEX_M && ARM help Direct interrupts are designed for performance-critical interrupt handling and do not go through all of the common interrupt handling code. This option enables the installation of interrupt service routines for direct interrupts at runtime. Note: this requires enabling support for dynamic interrupts in the kernel. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*