Kconfig 696 B

1234567891011121314151617181920212223242526272829303132333435
  1. # Watchdog configuration options
  2. # Copyright (c) 2015 Intel Corporation
  3. # Copyright (c) 2017 Nordic Semiconductor ASA
  4. # SPDX-License-Identifier: Apache-2.0
  5. menuconfig WATCHDOG
  6. bool "Watchdog Support"
  7. select HAS_DTS_WDT
  8. help
  9. Include support for watchdogs.
  10. if WATCHDOG
  11. config WDT_DISABLE_AT_BOOT
  12. bool "Disable at boot"
  13. help
  14. Disable watchdog at Zephyr system startup.
  15. module = WDT
  16. module-str = watchdog
  17. source "subsys/logging/Kconfig.template.log_config"
  18. config HAS_WDT_MULTISTAGE
  19. bool
  20. config WDT_MULTISTAGE
  21. bool "Enable multistage timeouts"
  22. depends on HAS_WDT_MULTISTAGE
  23. help
  24. Enable multistage operation of watchdog timeouts.
  25. source "drivers/watchdog/Kconfig.acts"
  26. endif