mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-19 15:59:08 +00:00
25 lines
358 B
C
25 lines
358 B
C
/*
|
|
* SPDX-FileCopyrightText: 2025 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include "esp_attr.h"
|
|
#include "sdkconfig.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
#if CONFIG_ESP_SYSTEM_IN_IRAM
|
|
#define ESP_SYSTEM_IRAM_ATTR IRAM_ATTR
|
|
#else
|
|
#define ESP_SYSTEM_IRAM_ATTR
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|