2022-07-20 07:59:14 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
2017-05-08 01:25:30 -04:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#ifdef ESP_PLATFORM
|
|
|
|
#include "sdkconfig.h"
|
2020-10-20 10:53:57 -04:00
|
|
|
#include "soc/soc.h"
|
|
|
|
#include "soc/soc_caps.h"
|
2018-03-22 10:58:20 -04:00
|
|
|
#endif
|
2017-05-08 01:25:30 -04:00
|
|
|
|
|
|
|
/* Configuration macros for multi-heap */
|
|
|
|
|
|
|
|
#ifdef CONFIG_HEAP_POISONING_LIGHT
|
|
|
|
#define MULTI_HEAP_POISONING
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef CONFIG_HEAP_POISONING_COMPREHENSIVE
|
|
|
|
#define MULTI_HEAP_POISONING
|
|
|
|
#define MULTI_HEAP_POISONING_SLOW
|
|
|
|
#endif
|