I'm using a WROVER32KIT v3 and if I build the following tiny app, it reports "227560" on startup.
Code: Select all
#include "sdkconfig.h"
#include "esp_system.h"
#include "esp_log.h"
#define TAG "TEST"
void app_main()
{
ESP_LOGI(TAG, "%d", esp_get_free_heap_size());
}
FWIW: I'm aware of the SPI RAM, and am using it in my project. This came about because I ran out of internal RAM specifically when allocating FreeRTOS task stacks.
Thanks in advance for any light you can shine!
Thanks,
Jason