mirror of
https://github.com/espressif/esp-idf
synced 2025-03-10 09:39:10 -04:00
61 lines
1.4 KiB
C
61 lines
1.4 KiB
C
/*
|
|
* SPDX-FileCopyrightText: 2022 Espressif Systems (Shanghai) CO LTD
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include <stdint.h>
|
|
#include "esp_cpu.h"
|
|
#include "soc/rtc.h"
|
|
#include "esp_private/panic_internal.h"
|
|
#include "esp_private/system_internal.h"
|
|
#include "esp_heap_caps.h"
|
|
#include "esp_rom_uart.h"
|
|
#include "esp_rom_sys.h"
|
|
#include "sdkconfig.h"
|
|
|
|
void IRAM_ATTR esp_restart_noos_dig(void)
|
|
{
|
|
// make sure all the panic handler output is sent from UART FIFO
|
|
if (CONFIG_ESP_CONSOLE_UART_NUM >= 0) {
|
|
esp_rom_uart_tx_wait_idle(CONFIG_ESP_CONSOLE_UART_NUM);
|
|
}
|
|
|
|
// switch to XTAL (otherwise we will keep running from the PLL)
|
|
rtc_clk_cpu_freq_set_xtal();
|
|
|
|
#if CONFIG_IDF_TARGET_ESP32
|
|
esp_cpu_unstall(PRO_CPU_NUM);
|
|
#endif
|
|
// reset the digital part
|
|
esp_rom_software_reset_system();
|
|
while (true) {
|
|
;
|
|
}
|
|
}
|
|
|
|
uint32_t esp_get_free_heap_size( void )
|
|
{
|
|
return heap_caps_get_free_size( MALLOC_CAP_DEFAULT );
|
|
}
|
|
|
|
uint32_t esp_get_free_internal_heap_size( void )
|
|
{
|
|
return heap_caps_get_free_size( MALLOC_CAP_8BIT | MALLOC_CAP_DMA | MALLOC_CAP_INTERNAL );
|
|
}
|
|
|
|
uint32_t esp_get_minimum_free_heap_size( void )
|
|
{
|
|
return heap_caps_get_minimum_free_size( MALLOC_CAP_DEFAULT );
|
|
}
|
|
|
|
const char *esp_get_idf_version(void)
|
|
{
|
|
return IDF_VER;
|
|
}
|
|
|
|
void __attribute__((noreturn)) esp_system_abort(const char *details)
|
|
{
|
|
panic_abort(details);
|
|
}
|