Select one of the symbols to view example projects that use it.
 
Outline
bootloader_ana_super_wdt_reset_config(bool);
bootloader_ana_clock_glitch_reset_config(bool);
bootloader_power_glitch_reset_config(bool, uint8_t);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/bootloader_support/private_include/bootloader_soc.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #ifdef __cplusplus extern "C" { #endif /** * @brief Configure analog super WDT reset * * @param enable Boolean to enable or disable super WDT reset */ void bootloader_ana_super_wdt_reset_config(bool enable); /** * @brief Configure analog clock glitch reset * * @param enable Boolean to enable or disable clock glitch reset */ void bootloader_ana_clock_glitch_reset_config(bool enable); /** * @brief Configure analog power glitch reset & glitch reset dref * * @param enable Boolean to enable or disable power glitch reset * @param dref voltage threshold */ void bootloader_power_glitch_reset_config(bool enable, uint8_t dref); #ifdef __cplusplus } #endif
Details