1 /*
2  * SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
3  *
4  * SPDX-License-Identifier: Apache-2.0
5  */
6 #pragma once
7 
8 #ifdef ESP_PLATFORM
9 #include "sdkconfig.h"
10 #include "soc/soc.h"
11 #include "soc/soc_caps.h"
12 #endif
13 
14 /* Configuration macros for multi-heap */
15 
16 #ifdef CONFIG_HEAP_POISONING_LIGHT
17 #define MULTI_HEAP_POISONING
18 #endif
19 
20 #ifdef CONFIG_HEAP_POISONING_COMPREHENSIVE
21 #define MULTI_HEAP_POISONING
22 #define MULTI_HEAP_POISONING_SLOW
23 #endif
24