The latest development version of this page may be more current than this released 1.14.0 version.
CONFIG_SIMPLE_FATAL_ERROR_HANDLER

Simple system fatal error handler

Type: bool

Help

Provides an implementation of _SysFatalErrorHandler() that hard hangs instead of aborting the faulting thread, and does not print anything, for footprint-concerned systems. Only enable this option if you do not want debug capabilities in case of system fatal error.

Defaults

Kconfig definition

At arch/Kconfig:235

Included via Kconfig:10Kconfig.zephyr:29

Menu path: (top menu) → General Architecture Options

config SIMPLE_FATAL_ERROR_HANDLER
    bool
    prompt "Simple system fatal error handler"
    default "y" if !MULTITHREADING
    help
      Provides an implementation of _SysFatalErrorHandler() that hard hangs
      instead of aborting the faulting thread, and does not print anything,
      for footprint-concerned systems. Only enable this option if you do not
      want debug capabilities in case of system fatal error.

(Definitions include propagated dependencies, including from if’s and menus.)