1 /*
2  * SPDX-FileCopyrightText: 2019-2021 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 
7 #include <stdbool.h>
8 
9 //Not supported but common bootloader calls the function. Do nothing
bootloader_ana_clock_glitch_reset_config(bool enable)10 void bootloader_ana_clock_glitch_reset_config(bool enable)
11 {
12     (void)enable;
13 }
14