From 5050625f9e09800edc8fd4cbec221ea0ec3a4796 Mon Sep 17 00:00:00 2001 From: jincheng Date: Fri, 1 Jul 2022 19:19:00 +0800 Subject: [PATCH] fix the issue of functions not defined when enable memory debug --- components/bt/common/include/bt_common.h | 6 ++++++ .../bt/host/bluedroid/common/include/common/bt_target.h | 6 ------ 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/components/bt/common/include/bt_common.h b/components/bt/common/include/bt_common.h index 6951bbca6f..7a2c833ad1 100644 --- a/components/bt/common/include/bt_common.h +++ b/components/bt/common/include/bt_common.h @@ -61,6 +61,12 @@ #define BTC_DYNAMIC_MEMORY FALSE #endif +#if UC_BT_BLUEDROID_MEM_DEBUG +#define HEAP_MEMORY_DEBUG TRUE +#else +#define HEAP_MEMORY_DEBUG FALSE +#endif + #ifndef BT_BLE_DYNAMIC_ENV_MEMORY #define BT_BLE_DYNAMIC_ENV_MEMORY FALSE #endif diff --git a/components/bt/host/bluedroid/common/include/common/bt_target.h b/components/bt/host/bluedroid/common/include/common/bt_target.h index bb06a5d58f..f025f2722f 100644 --- a/components/bt/host/bluedroid/common/include/common/bt_target.h +++ b/components/bt/host/bluedroid/common/include/common/bt_target.h @@ -2130,12 +2130,6 @@ The maximum number of payload octets that the local device can receive in a sing #define BTSNOOP_MEM FALSE #endif -#if UC_BT_BLUEDROID_MEM_DEBUG -#define HEAP_MEMORY_DEBUG TRUE -#else -#define HEAP_MEMORY_DEBUG FALSE -#endif - #if UC_HEAP_ALLOCATION_FROM_SPIRAM_FIRST #define HEAP_ALLOCATION_FROM_SPIRAM_FIRST TRUE #else