ESP32 Free Heap
Posted: Tue Dec 15, 2015 2:57 am
finally got the board run.
with the example running there is 78324 bytes ram left.
with the example running there is 78324 bytes ram left.
Code: Select all
#include "esp_common.h"
/******************************************************************************
* FunctionName : user_init
* Description : entry of user application, init user function here
* Parameters : none
* Returns : none
*******************************************************************************/
void user_init(void)
{
printf("ESP32 SDK version:%s, RAM left %d\n", system_get_sdk_version(), system_get_free_heap_size());
}