esp_dma_capable_malloc() function
Helper function for malloc a DMA capable memory buffer
Arguments
size
Size in bytes, the amount of memory to allocate
dma_mem_info
DMA and memory info, see `esp_dma_mem_info_t`
out_ptr
A pointer to the memory allocated successfully
actual_size
Actual size for allocation in bytes, when the size you specified doesn't meet the DMA alignment requirements, this value might be bigger than the size you specified. Set null if you don't care this value.
Return value
- ESP_OK: - ESP_ERR_INVALID_ARG: Invalid argument - ESP_ERR_NO_MEM: No enough memory for allocation
Notes
This API will take care of the cache alignment internally, you will need to set `esp_dma_mem_info_t: dma_alignment_bytes` with either the custom alignment or DMA alignment of used peripheral driver.