Merge branch 'bugfix/extern_c_decl' into 'master'

esp_hw_support: Added extern "C" declaration

Closes IDF-2860

See merge request espressif/esp-idf!24217
This commit is contained in:
Jakob Hasse
2023-06-14 23:23:37 +08:00

View File

@@ -3,8 +3,8 @@
* *
* SPDX-License-Identifier: Apache-2.0 * SPDX-License-Identifier: Apache-2.0
*/ */
#ifndef __REGDMA_LINK_H__
#define __REGDMA_LINK_H__ #pragma once
#include <stdint.h> #include <stdint.h>
#include <stddef.h> #include <stddef.h>
@@ -14,6 +14,10 @@
#if SOC_PAU_SUPPORTED #if SOC_PAU_SUPPORTED
#include "esp_regdma.h" #include "esp_regdma.h"
#ifdef __cplusplus
extern "C" {
#endif
#define FILL_PLINK_HEAD(_pl, _len, _mode, _branch, _sr, _sb, _eof) { \ #define FILL_PLINK_HEAD(_pl, _len, _mode, _branch, _sr, _sb, _eof) { \
_pl->head.length = _len; \ _pl->head.length = _len; \
_pl->head.mode = _mode; \ _pl->head.mode = _mode; \
@@ -194,6 +198,8 @@ static inline void regdma_link_update_stats(regdma_link_stats_t *stats, int entr
stats->ref |= BIT(entry); stats->ref |= BIT(entry);
} }
#endif // SOC_PAU_SUPPORTED #ifdef __cplusplus
}
#endif
#endif /* __REGDMA_LINK_H__ */ #endif // SOC_PAU_SUPPORTED