Select one of the symbols to view example projects that use it.
 
Outline
#define __ESP_SYSTEM_H__
#include <stdint.h>
#include <stdbool.h>
#include "esp_err.h"
#include "esp_attr.h"
#include "esp_bit_defs.h"
#include "esp_idf_version.h"
esp_reset_reason_t
shutdown_handler_t
esp_register_shutdown_handler(shutdown_handler_t);
esp_unregister_shutdown_handler(shutdown_handler_t);
esp_restart();
esp_reset_reason();
esp_get_free_heap_size();
esp_get_free_internal_heap_size();
esp_get_minimum_free_heap_size();
esp_system_abort(const char *);
Files
loading...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_system/include/esp_system.h
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2015-2024 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #ifndef __ESP_SYSTEM_H__ #define __ESP_SYSTEM_H__ #include <stdint.h> #include <stdbool.h> #include "esp_err.h" #include "esp_attr.h" #include "esp_bit_defs.h" #include "esp_idf_version.h"6 includes #ifdef __cplusplus extern "C" { #endif /** * @brief Reset reasons *//* ... */ typedef enum { ESP_RST_UNKNOWN, //!< Reset reason can not be determined ESP_RST_POWERON, //!< Reset due to power-on event ESP_RST_EXT, //!< Reset by external pin (not applicable for ESP32) ESP_RST_SW, //!< Software reset via esp_restart ESP_RST_PANIC, //!< Software reset due to exception/panic ESP_RST_INT_WDT, //!< Reset (software or hardware) due to interrupt watchdog ESP_RST_TASK_WDT, //!< Reset due to task watchdog ESP_RST_WDT, //!< Reset due to other watchdogs ESP_RST_DEEPSLEEP, //!< Reset after exiting deep sleep mode ESP_RST_BROWNOUT, //!< Brownout reset (software or hardware) ESP_RST_SDIO, //!< Reset over SDIO ESP_RST_USB, //!< Reset by USB peripheral ESP_RST_JTAG, //!< Reset by JTAG ESP_RST_EFUSE, //!< Reset due to efuse error ESP_RST_PWR_GLITCH, //!< Reset due to power glitch detected ESP_RST_CPU_LOCKUP, //!< Reset due to CPU lock up (double exception) }{ ... } esp_reset_reason_t; /** * Shutdown handler type *//* ... */ typedef void (*shutdown_handler_t)(void); /** * @brief Register shutdown handler * * This function allows you to register a handler that gets invoked before * the application is restarted using esp_restart function. * @param handle function to execute on restart * @return * - ESP_OK on success * - ESP_ERR_INVALID_STATE if the handler has already been registered * - ESP_ERR_NO_MEM if no more shutdown handler slots are available *//* ... */ esp_err_t esp_register_shutdown_handler(shutdown_handler_t handle); /** * @brief Unregister shutdown handler * * This function allows you to unregister a handler which was previously * registered using esp_register_shutdown_handler function. * - ESP_OK on success * - ESP_ERR_INVALID_STATE if the given handler hasn't been registered before *//* ... */ esp_err_t esp_unregister_shutdown_handler(shutdown_handler_t handle); /** * @brief Restart PRO and APP CPUs. * * This function can be called both from PRO and APP CPUs. * After successful restart, CPU reset reason will be SW_CPU_RESET. * Peripherals (except for Wi-Fi, BT, UART0, SPI1, and legacy timers) are not reset. * This function does not return. *//* ... */ void esp_restart(void) __attribute__((__noreturn__)); /** * @brief Get reason of last reset * @return See description of esp_reset_reason_t for explanation of each value. *//* ... */ esp_reset_reason_t esp_reset_reason(void); /** * @brief Get the size of available heap. * * @note Note that the returned value may be larger than the maximum contiguous block * which can be allocated. * * @return Available heap size, in bytes. *//* ... */ uint32_t esp_get_free_heap_size(void); /** * @brief Get the size of available internal heap. * * @note Note that the returned value may be larger than the maximum contiguous block * which can be allocated. * * @return Available internal heap size, in bytes. *//* ... */ uint32_t esp_get_free_internal_heap_size(void); /** * @brief Get the minimum heap that has ever been available * * @return Minimum free heap ever available *//* ... */ uint32_t esp_get_minimum_free_heap_size(void); /** * @brief Trigger a software abort * * @param details Details that will be displayed during panic handling. *//* ... */ void __attribute__((__noreturn__)) esp_system_abort(const char* details); #ifdef __cplusplus }{...} #endif /* ... */ #endif /* __ESP_SYSTEM_H__ */
Details