1
6
7
8
9
12
13
14
15
16
17
18
19
20
24
25
29
30
34
35
36
37
/* ... */
#pragma once
/* ... */
#include "esp_attr.h"
#include "esp_cpu.h"
#ifdef __cplusplus
extern "C" {
#endif
FORCE_INLINE_ATTR __attribute__((deprecated)) void soc_ll_stall_core(int core)
{
esp_cpu_stall(core);
}{ ... }
FORCE_INLINE_ATTR __attribute__((deprecated)) void soc_ll_unstall_core(int core)
{
esp_cpu_unstall(core);
}{ ... }
FORCE_INLINE_ATTR __attribute__((deprecated)) void soc_ll_reset_core(int core)
{
esp_cpu_reset(core);
}{ ... }
#ifdef __cplusplus
}{...}
#endif