mirror of
https://github.com/espressif/esp-idf.git
synced 2026-04-27 19:13:21 +00:00
feat(openthread): support openthread heap allocation from PSRAM
This commit is contained in:
@@ -1,5 +1,5 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2021-2025 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2021-2026 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
@@ -99,6 +99,16 @@
|
||||
#define OPENTHREAD_CONFIG_RADIO_LINK_TREL_ENABLE 0
|
||||
#endif // CONFIG_OPENTHREAD_RADIO_TREL
|
||||
|
||||
#if CONFIG_OPENTHREAD_RADIO_TREL
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_TREL_USE_HEAP_ENABLE
|
||||
*
|
||||
* Set to 1 to allow TREL modules to use heap allocated objects (e.g. for the TREL peer table).
|
||||
*
|
||||
*/
|
||||
#define OPENTHREAD_CONFIG_TREL_USE_HEAP_ENABLE 1
|
||||
#endif // CONFIG_OPENTHREAD_RADIO_TREL
|
||||
|
||||
/**
|
||||
* @def OPENTHREAD_CONFIG_RADIO_LINK_IEEE_802_15_4_ENABLE
|
||||
*
|
||||
|
||||
@@ -1,10 +1,11 @@
|
||||
/*
|
||||
* SPDX-FileCopyrightText: 2021-2022 Espressif Systems (Shanghai) CO LTD
|
||||
* SPDX-FileCopyrightText: 2021-2026 Espressif Systems (Shanghai) CO LTD
|
||||
*
|
||||
* SPDX-License-Identifier: Apache-2.0
|
||||
*/
|
||||
|
||||
#include "esp_openthread.h"
|
||||
#include "esp_openthread_platform.h"
|
||||
|
||||
#include "openthread/platform/memory.h"
|
||||
|
||||
@@ -12,10 +13,10 @@
|
||||
|
||||
void *otPlatCAlloc(size_t num, size_t size)
|
||||
{
|
||||
return calloc(num, size);
|
||||
return heap_caps_calloc(num, size, esp_openthread_get_alloc_caps());
|
||||
}
|
||||
|
||||
void otPlatFree(void *ptr)
|
||||
{
|
||||
free(ptr);
|
||||
heap_caps_free(ptr);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user