2021-11-06 17:21:57 +08:00
|
|
|
/*
|
2022-01-18 10:32:56 +08:00
|
|
|
* SPDX-FileCopyrightText: 2019-2022 Espressif Systems (Shanghai) CO LTD
|
2021-11-06 17:21:57 +08:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
*/
|
|
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
|
|
void bootloader_ana_super_wdt_reset_config(bool enable)
|
|
|
|
|
{
|
2022-01-18 10:32:56 +08:00
|
|
|
(void)enable; // ESP32-C2 has none of these features.
|
2021-11-06 17:21:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void bootloader_ana_bod_reset_config(bool enable)
|
|
|
|
|
{
|
2022-01-18 10:32:56 +08:00
|
|
|
(void)enable; // ESP32-C2 has none of these features.
|
2021-11-06 17:21:57 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void bootloader_ana_clock_glitch_reset_config(bool enable)
|
|
|
|
|
{
|
2022-01-18 10:32:56 +08:00
|
|
|
(void)enable; // ESP32-C2 has none of these features.
|
2021-11-06 17:21:57 +08:00
|
|
|
}
|