fix(bootloader_support): Add missing c linkage to some headers

Merges https://github.com/espressif/esp-idf/pull/13890
This commit is contained in:
andylinpersonal
2024-06-01 23:48:58 +08:00
committed by Konstantin Kondrashov
parent 13e5b6f335
commit 100f23a1c1
8 changed files with 65 additions and 8 deletions

View File

@@ -1,10 +1,15 @@
/*
* SPDX-FileCopyrightText: 2015-2021 Espressif Systems (Shanghai) CO LTD
* 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
*
@@ -25,3 +30,7 @@ void bootloader_ana_bod_reset_config(bool enable);
* @param enable Boolean to enable or disable clock glitch reset
*/
void bootloader_ana_clock_glitch_reset_config(bool enable);
#ifdef __cplusplus
}
#endif