:orphan: .. title:: FAULT_DUMP .. option:: CONFIG_FAULT_DUMP *Fault dump level* *Fault dump level* Type: ``int`` Help ==== Different levels for display information when a fault occurs. 2: The default. Display specific and verbose information. Consumes the most memory (long strings). 1: Display general and short information. Consumes less memory (short strings). 0: Off. Help ==== Different levels for display information when a fault occurs. 2: The default. Display specific and verbose information. Consumes the most memory (long strings). 1: Display general and short information. Consumes less memory (short strings). 0: Off. Direct dependencies =================== \ :option:`ARC ` || (!\ :option:`ARM64 ` && \ :option:`ARM `) *(Includes any dependencies from ifs and menus.)* Defaults ======== - 2 - 2 Kconfig definitions =================== .. highlight:: kconfig At ``arch/arc/Kconfig:180`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` Menu path: (Top) → ARC Options → ARCv2 Family Options .. parsed-literal:: config FAULT_DUMP int "Fault dump level" range 0 2 default 2 depends on \ :option:`ARC ` help Different levels for display information when a fault occurs. 2: The default. Display specific and verbose information. Consumes the most memory (long strings). 1: Display general and short information. Consumes less memory (short strings). 0: Off. ---- At ``arch/arm/core/aarch32/Kconfig:136`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:29`` → ``arch/Kconfig:12`` → ``arch/arm/Kconfig:42`` Menu path: (Top) → ARM Options .. parsed-literal:: config FAULT_DUMP int "Fault dump level" range 0 2 default 2 depends on !\ :option:`ARM64 ` && \ :option:`ARM ` help Different levels for display information when a fault occurs. 2: The default. Display specific and verbose information. Consumes the most memory (long strings). 1: Display general and short information. Consumes less memory (short strings). 0: Off. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*