:orphan: .. title:: EXCEPTION_DEBUG .. option:: CONFIG_EXCEPTION_DEBUG *Unhandled exception debugging information* *Unhandled exception debugging* Type: ``bool`` Help ==== Print human-readable information about exception vectors, cause codes, and parameters, at a cost of code/data size for the human-readable strings. Help ==== Install handlers for various CPU exception/trap vectors to make debugging them easier, at a small expense in code size. This prints out the specific exception vector and any associated error codes. Direct dependencies =================== (\ :option:`LOG ` && \ :option:`CPU_CORTEX_A ` && \ :option:`ARM64 ` && \ :option:`ARM `) || (\ :option:`LOG ` && \ :option:`X86 `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - y - y Kconfig definitions =================== .. highlight:: kconfig At ``arch/arm/core/aarch64/Kconfig:106`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/arm/Kconfig:46`` Menu path: (Top) → ARM Options .. parsed-literal:: config EXCEPTION_DEBUG bool "Unhandled exception debugging information" default y depends on \ :option:`LOG ` && \ :option:`CPU_CORTEX_A ` && \ :option:`ARM64 ` && \ :option:`ARM ` help Print human-readable information about exception vectors, cause codes, and parameters, at a cost of code/data size for the human-readable strings. ---- At ``arch/x86/Kconfig:166`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → X86 Architecture Options .. parsed-literal:: config EXCEPTION_DEBUG bool "Unhandled exception debugging" default y depends on \ :option:`LOG ` && \ :option:`X86 ` help Install handlers for various CPU exception/trap vectors to make debugging them easier, at a small expense in code size. This prints out the specific exception vector and any associated error codes. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*