2022-11-03 11:59:19 -04:00
|
|
|
/*
|
|
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* All functions presented here are stubs for the POSIX/Linux implementation of FReeRTOS.
|
|
|
|
* They are meant to allow to compile, but they DO NOT return any meaningful value.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "esp_private/system_internal.h"
|
2022-11-29 03:32:55 -05:00
|
|
|
#include "esp_heap_caps.h"
|
2022-11-03 11:59:19 -04:00
|
|
|
|
|
|
|
// dummy, we should never get here on Linux
|
|
|
|
void esp_restart_noos_dig(void)
|
|
|
|
{
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t esp_get_free_heap_size( void )
|
|
|
|
{
|
2022-11-29 03:32:55 -05:00
|
|
|
return heap_caps_get_free_size( MALLOC_CAP_DEFAULT );
|
2022-11-03 11:59:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t esp_get_free_internal_heap_size( void )
|
|
|
|
{
|
2022-11-29 03:32:55 -05:00
|
|
|
return heap_caps_get_free_size( MALLOC_CAP_8BIT | MALLOC_CAP_DMA | MALLOC_CAP_INTERNAL );
|
2022-11-03 11:59:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t esp_get_minimum_free_heap_size( void )
|
|
|
|
{
|
2022-11-29 03:32:55 -05:00
|
|
|
return heap_caps_get_minimum_free_size( MALLOC_CAP_DEFAULT );
|
2022-11-03 11:59:19 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
const char *esp_get_idf_version(void)
|
|
|
|
{
|
|
|
|
return IDF_VER;
|
|
|
|
}
|
|
|
|
|
|
|
|
void __attribute__((noreturn)) esp_system_abort(const char *details)
|
|
|
|
{
|
|
|
|
exit(1);
|
|
|
|
}
|