ESP-IDF
esp_ipc_func_t
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
esp_ipc_func_t
esp_ipc_func_t
IPC Callback A callback of this type should be provided as an argument when calling esp_ipc_call() or esp_ipc_call_blocking().
Syntax
Show:
Summary
Declaration
from
esp_ipc.h:30
typedef
void
(
*
esp_ipc_func_t
)
(
void
*
arg
)
;
Examples
References
from
examples
Code
Location
Referrer
typedef
void
(
*
esp_ipc_func_t
)
(
void
*
arg
)
;
esp_ipc.h:30
static
volatile
esp_ipc_func_t
s_func
[
CONFIG_FREERTOS_NUMBER_OF_CORES
]
=
{
0
}
;
// Function which should be called by high priority task
esp_ipc.c:38
static
volatile
esp_ipc_func_t
s_no_block_func
[
portNUM_PROCESSORS
]
=
{
0
}
;
esp_ipc.c:48
esp_ipc_func_t
func
=
s_func
[
cpuid
]
;
esp_ipc.c:74
ipc_task()
static
esp_err_t
esp_ipc_call_and_wait
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
,
esp_ipc_wait_t
wait_for
)
esp_ipc.c:127
esp_ipc_call_and_wait()
esp_err_t
esp_ipc_call
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
esp_ipc.c:168
esp_ipc_call()
esp_err_t
esp_ipc_call_blocking
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
esp_ipc.c:173
esp_ipc_call_blocking()
esp_err_t
esp_ipc_call_nonblocking
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
esp_ipc.c:178
esp_ipc_call_nonblocking()
esp_err_t
esp_ipc_call
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
;
esp_ipc.h:53
esp_err_t
esp_ipc_call_blocking
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
;
esp_ipc.h:72
esp_err_t
esp_ipc_call_nonblocking
(
uint32_t
cpu_id
,
esp_ipc_func_t
func
,
void
*
arg
)
;
esp_ipc.h:41
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
All items filtered out
All items filtered out
Class Tree
from
examples
All items filtered out
All items filtered out
Override Tree
from
examples
All items filtered out
All items filtered out
Implementations
from
examples
All items filtered out
All items filtered out
Instances
from
examples
Lifecycle
from
examples
All items filtered out
All items filtered out