ESP-IDF
Select one of the symbols to view example projects that use it.
Symbol previews are coming soon...
Outline
#include "esp_system.h"
#include "esp_private/system_internal.h"
#include "freertos/FreeRTOS.h"
#include "freertos/task.h"
#include "esp32s2/memprot.h"
#include "esp_memprot.h"
#define SHUTDOWN_HANDLERS_NO
shutdown_handlers
esp_register_shutdown_handler(shutdown_handler_t)
for
(int i = 0; i < SHUTDOWN_HANDLERS_NO; i++)
if
(shutdown_handlers[i] == handler)
else if
(shutdown_handlers[i] == NULL)
esp_unregister_shutdown_handler(shutdown_handler_t)
for
(int i = 0; i < SHUTDOWN_HANDLERS_NO; i++)
if
(shutdown_handlers[i] == handler)
esp_restart()
for
(int i = SHUTDOWN_HANDLERS_NO - 1; i >= 0; i--)
if
(shutdown_handlers[i])
Files
loading (4/5)...
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
components/esp_system/esp_system.c
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
/*
* SPDX-FileCopyrightText: 2015-2022 Espressif Systems (Shanghai) CO LTD
*
* SPDX-License-Identifier: Apache-2.0
*/
/* ... */
#include
"
esp_system.h"
#include
"
esp_private
/
system_internal.h"
#include
"
freertos
/
FreeRTOS.h"
#include
"
freertos
/
task.h"
#if
CONFIG_ESP_SYSTEM_MEMPROT_FEATURE
#if
CONFIG_IDF_TARGET_ESP32S2
#include
"
esp32s2
/
memprot.h"
#else
#include
"
esp_memprot.h"
#endif
/* ... */
#endif
#define
SHUTDOWN_HANDLERS_NO
5
static
shutdown_handler_t
shutdown_handlers
[
SHUTDOWN_HANDLERS_NO
]
;
esp_err_t
esp_register_shutdown_handler
(
shutdown_handler_t
handler
)
{
for
(
int
i
=
0
;
i
<
SHUTDOWN_HANDLERS_NO
;
i
++
)
{
if
(
shutdown_handlers
[
i
]
==
handler
)
{
return
ESP_ERR_INVALID_STATE
;
}
{...}
else
if
(
shutdown_handlers
[
i
]
==
NULL
)
{
shutdown_handlers
[
i
]
=
handler
;
return
ESP_OK
;
}
{...}
}
{...}
return
ESP_ERR_NO_MEM
;
}
{ ... }
esp_err_t
esp_unregister_shutdown_handler
(
shutdown_handler_t
handler
)
{
for
(
int
i
=
0
;
i
<
SHUTDOWN_HANDLERS_NO
;
i
++
)
{
if
(
shutdown_handlers
[
i
]
==
handler
)
{
shutdown_handlers
[
i
]
=
NULL
;
return
ESP_OK
;
}
{...}
}
{...}
return
ESP_ERR_INVALID_STATE
;
}
{ ... }
void
esp_restart
(
void
)
{
for
(
int
i
=
SHUTDOWN_HANDLERS_NO
-
1
;
i
>=
0
;
i
--
)
{
if
(
shutdown_handlers
[
i
]
)
{
shutdown_handlers
[
i
]
(
)
;
}
{...}
}
{...}
#if
(
(
CONFIG_FREERTOS_SMP
)
&&
(
!
CONFIG_FREERTOS_UNICORE
)
)
//Note: Scheduler suspension behavior changed in FreeRTOS SMP
vTaskPreemptionDisable
(
NULL
)
;
/* ... */
#else
// Disable scheduler on this core.
vTaskSuspendAll
(
)
;
/* ... */
#endif
// #if ( ( CONFIG_FREERTOS_SMP ) && ( !CONFIG_FREERTOS_UNICORE ) )
esp_restart_noos
(
)
;
}
{ ... }
Details
Show:
from
Types:
Columns:
All items filtered out
All items filtered out
This file uses the notable symbols shown below. Click anywhere in the file to view more details.
vTaskSuspendAll()
esp_restart()
esp_register_shutdown_handler()
esp_unregister_shutdown_handler()
esp_restart_noos()
NULL
esp_err_t
ESP_OK
ESP_ERR_INVALID_STATE
ESP_ERR_NO_MEM
shutdown_handler_t
shutdown_handlers
SHUTDOWN_HANDLERS_NO