Select one of the symbols to view example projects that use it.
 
Outline
#include "esp_attr.h"
#include "esp_cpu.h"
soc_ll_stall_core(int)
soc_ll_unstall_core(int)
soc_ll_reset_core(int)
Files
loading (1/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/hal/soc_ll.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once /* Note: This is a compatibility header. Call the interfaces in esp_cpu.h instead *//* ... */ #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
Details
Show:
from
Types: Columns: