heap_caps_add_region() function
Add a region of memory to the collection of heaps at runtime. Most memory regions are defined in soc_memory_layout.c for the SoC, and are registered via heap_caps_init(). Some regions can't be used immediately and are later enabled via heap_caps_enable_nonos_stack_heaps(). Call this function to add a region of memory to the heap at some later time. This function does not consider any of the "reserved" regions or other data in soc_memory_layout, caller needs to consider this themselves. All memory within the region specified by start & end parameters must be otherwise unused. The capabilities of the newly registered memory will be determined by the start address, as looked up in the regions specified in soc_memory_layout.c. Use heap_caps_add_region_with_caps() to register a region with custom capabilities.
Arguments
start
Start address of new region.
end
End address of new region.
Return value
ESP_OK on success, ESP_ERR_INVALID_ARG if a parameter is invalid, ESP_ERR_NOT_FOUND if the specified start address doesn't reside in a known region, or any error returned by heap_caps_add_region_with_caps().
Notes
Please refer to following example for memory regions allowed for addition to heap based on an existing region (address range for demonstration purpose only): @verbatim Existing region: 0x1000 0x3000 New region: 0x1000 0x3000 (Allowed) New region: 0x1000 0x2000 (Allowed) New region: 0x0000 0x1000 (Allowed) New region: 0x3000 0x4000 (Allowed) New region: 0x0000 0x2000 (NOT Allowed) New region: 0x0000 0x4000 (NOT Allowed) New region: 0x1000 0x4000 (NOT Allowed) New region: 0x2000 0x4000 (NOT Allowed) @endverbatim