Select one of the symbols to view example projects that use it.
 
Outline
#include <sdkconfig.h>
#include "soc/dport_access.h"
#define DPORT_STALL_OTHER_CPU_START
#define DPORT_STALL_OTHER_CPU_END
#include "esp_ipc_isr.h"
#define DPORT_STALL_OTHER_CPU_START
#define DPORT_STALL_OTHER_CPU_END
Files
loading (4/5)...
SourceVuESP-IDF Framework and ExamplesESP-IDFcomponents/esp_hw_support/include/dport_access.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
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
/* * SPDX-FileCopyrightText: 2010-2021 Espressif Systems (Shanghai) CO LTD * * SPDX-License-Identifier: Apache-2.0 *//* ... */ #pragma once #include <sdkconfig.h> #include "soc/dport_access.h" #ifdef __cplusplus extern "C" { #endif #if defined(BOOTLOADER_BUILD) || defined(CONFIG_ESP_SYSTEM_SINGLE_CORE_MODE) || !SOC_DPORT_WORKAROUND #define DPORT_STALL_OTHER_CPU_START() #define DPORT_STALL_OTHER_CPU_END()/* ... */ #else #include "esp_ipc_isr.h" #define DPORT_STALL_OTHER_CPU_START() esp_ipc_isr_stall_other_cpu() #define DPORT_STALL_OTHER_CPU_END() esp_ipc_isr_release_other_cpu()/* ... */ #endif #ifdef __cplusplus }{...} #endif
Details
Show:
from
Types: Columns:
This file uses the notable symbols shown below. Click anywhere in the file to view more details.