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 /** 9 * @brief Configure analog super WDT reset 10 * 11 * @param enable Boolean to enable or disable super WDT reset 12 */ 13 void bootloader_ana_super_wdt_reset_config(bool enable); 14 15 /** 16 * @brief Configure analog brownout reset 17 * 18 * @param enable Boolean to enable or disable brownout reset 19 */ 20 void bootloader_ana_bod_reset_config(bool enable); 21 22 /** 23 * @brief Configure analog clock glitch reset 24 * 25 * @param enable Boolean to enable or disable clock glitch reset 26 */ 27 void bootloader_ana_clock_glitch_reset_config(bool enable); 28