1
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
57
58
59
65
66
67
72
73
74
77
78
79
80
81
/* ... */
#pragma once
#ifdef __cplusplus
extern "C" {
#endif
#include "esp_system.h"
/* ... */
void esp_restart_noos(void) __attribute__((noreturn));
/* ... */
void esp_restart_noos_dig(void) __attribute__((noreturn));
/* ... */
void esp_reset_reason_set_hint(esp_reset_reason_t hint);
/* ... */
esp_reset_reason_t esp_reset_reason_get_hint(void);
/* ... */
int64_t esp_system_get_time(void);
/* ... */
uint32_t esp_system_get_time_resolution(void);
/* ... */
void esp_system_reset_modules_on_exit(void);
#ifdef __cplusplus
}{...}
#endif