Skip to content

Commit

Permalink
esp_hw_support: Added extern "C" declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
0xjakob committed Jun 13, 2023
1 parent 575ad2b commit e87ac72
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions components/esp_hw_support/include/esp_private/regdma_link.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef __REGDMA_LINK_H__
#define __REGDMA_LINK_H__

#pragma once

#include <stdint.h>
#include <stddef.h>
Expand All @@ -14,6 +14,10 @@
#if SOC_PAU_SUPPORTED
#include "esp_regdma.h"

#ifdef __cplusplus
extern "C" {
#endif

#define FILL_PLINK_HEAD(_pl, _len, _mode, _branch, _sr, _sb, _eof) { \
_pl->head.length = _len; \
_pl->head.mode = _mode; \
Expand Down Expand Up @@ -194,6 +198,8 @@ static inline void regdma_link_update_stats(regdma_link_stats_t *stats, int entr
stats->ref |= BIT(entry);
}

#endif // SOC_PAU_SUPPORTED
#ifdef __cplusplus
}
#endif

#endif /* __REGDMA_LINK_H__ */
#endif // SOC_PAU_SUPPORTED

0 comments on commit e87ac72

Please sign in to comment.