bootloader_soc.c 295 B

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