:orphan: .. title:: EXCEPTION_STACK_TRACE .. option:: CONFIG_EXCEPTION_STACK_TRACE *Attempt to print stack traces upon exceptions* Type: ``bool`` Help ==== If the architecture fatal handling code supports it, attempt to print a stack trace of function memory addresses when an exception is reported. Direct dependencies =================== \ :option:`PRINTK ` && \ :option:`DEBUG_INFO ` && !\ :option:`OMIT_FRAME_POINTER ` *(Includes any dependencies from ifs and menus.)* Default ======= - y Kconfig definition ================== .. highlight:: kconfig At ``subsys/debug/Kconfig:321`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:17`` Menu path: (Top) → Sub Systems and OS Services → Debugging Options → Enable system debugging information .. parsed-literal:: config EXCEPTION_STACK_TRACE bool "Attempt to print stack traces upon exceptions" default y depends on \ :option:`PRINTK ` && \ :option:`DEBUG_INFO ` && !\ :option:`OMIT_FRAME_POINTER ` help If the architecture fatal handling code supports it, attempt to print a stack trace of function memory addresses when an exception is reported. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*