bootloader_soc.h 658 B

123456789101112131415161718192021222324252627
  1. /*
  2. * SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #pragma once
  7. /**
  8. * @brief Configure analog super WDT reset
  9. *
  10. * @param enable Boolean to enable or disable super WDT reset
  11. */
  12. void bootloader_ana_super_wdt_reset_config(bool enable);
  13. /**
  14. * @brief Configure analog brownout reset
  15. *
  16. * @param enable Boolean to enable or disable brownout reset
  17. */
  18. void bootloader_ana_bod_reset_config(bool enable);
  19. /**
  20. * @brief Configure analog clock glitch reset
  21. *
  22. * @param enable Boolean to enable or disable clock glitch reset
  23. */
  24. void bootloader_ana_clock_glitch_reset_config(bool enable);