Merge branch 'feature/bootloader_add_extern_c' into 'master'

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

Closes IDFGH-12930

See merge request espressif/esp-idf!31300
This commit is contained in:
Konstantin Kondrashov
2024-06-05 13:54:35 +08:00
8 changed files with 65 additions and 8 deletions
@@ -11,6 +11,10 @@
// TODO: IDF-9197
#include "sdkconfig.h"
#ifdef __cplusplus
extern "C" {
#endif
/**
* @brief ESP chip ID
*
@@ -120,3 +124,7 @@ typedef struct {
} esp_image_segment_header_t;
#define ESP_IMAGE_MAX_SEGMENTS 16 /*!< Max count of segments in the image. */
#ifdef __cplusplus
}
#endif