mirror of
https://github.com/jomjol/AI-on-the-edge-device.git
synced 2025-12-08 12:36:52 +03:00
* centralize PSRAM usage (application code only) * update logging * update logging * fix use after free * initialize buffer * free rgb_image before ussing it for new allocation * use wrapper function * switch log level to debug * . * undo adding free() calls * . * add names to all CImage instances * . * . * . * revert changes of stbi_image_free() with free_psram_heap() on the places where is is not in PSRAM * . * typos * typo * Added MQTT Outbox explanation/warning * added CONFIG_SPIRAM_USE_MEMMAP explanation --------- Co-authored-by: CaCO3 <caco@ruinelli.ch>
7 lines
232 B
C++
7 lines
232 B
C++
|
|
#include "esp_heap_caps.h"
|
|
|
|
void *malloc_psram_heap(std::string name, size_t size, uint32_t caps);
|
|
void *calloc_psram_heap(std::string name, size_t n, size_t size, uint32_t caps);
|
|
|
|
void free_psram_heap(std::string name, void *ptr); |