wifi: Include DMA reserved pool when allocating internal-only memory
Fix for root cause of https://github.com/espressif/esp-idf/issues/3592
This commit is contained in:
parent
a0c14f46ba
commit
6231961683
1 changed files with 4 additions and 4 deletions
|
@ -404,22 +404,22 @@ static int get_time_wrapper(void *t)
|
||||||
|
|
||||||
static void * IRAM_ATTR malloc_internal_wrapper(size_t size)
|
static void * IRAM_ATTR malloc_internal_wrapper(size_t size)
|
||||||
{
|
{
|
||||||
return heap_caps_malloc(size, MALLOC_CAP_DEFAULT|MALLOC_CAP_INTERNAL);
|
return heap_caps_malloc(size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void * IRAM_ATTR realloc_internal_wrapper(void *ptr, size_t size)
|
static void * IRAM_ATTR realloc_internal_wrapper(void *ptr, size_t size)
|
||||||
{
|
{
|
||||||
return heap_caps_realloc(ptr, size, MALLOC_CAP_DEFAULT|MALLOC_CAP_INTERNAL);
|
return heap_caps_realloc(ptr, size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void * IRAM_ATTR calloc_internal_wrapper(size_t n, size_t size)
|
static void * IRAM_ATTR calloc_internal_wrapper(size_t n, size_t size)
|
||||||
{
|
{
|
||||||
return heap_caps_calloc(n, size, MALLOC_CAP_DEFAULT|MALLOC_CAP_INTERNAL);
|
return heap_caps_calloc(n, size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL);
|
||||||
}
|
}
|
||||||
|
|
||||||
static void * IRAM_ATTR zalloc_internal_wrapper(size_t size)
|
static void * IRAM_ATTR zalloc_internal_wrapper(size_t size)
|
||||||
{
|
{
|
||||||
void *ptr = heap_caps_calloc(1, size, MALLOC_CAP_DEFAULT|MALLOC_CAP_INTERNAL);
|
void *ptr = heap_caps_calloc(1, size, MALLOC_CAP_8BIT|MALLOC_CAP_DMA|MALLOC_CAP_INTERNAL);
|
||||||
if (ptr) {
|
if (ptr) {
|
||||||
memset(ptr, 0, size);
|
memset(ptr, 0, size);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue