ESP-IDF
ESP_RETURN_VOID_ON_FALSE_ISR
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Arguments
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
ESP_RETURN_VOID_ON_FALSE_ISR
ESP_RETURN_VOID_ON_FALSE_ISR macro
A version of ESP_RETURN_VOID_ON_FALSE() macro that can be called from ISR.
Syntax
Show:
Summary
Declaration
from
esp_check.h:404
#define
ESP_RETURN_VOID_ON_FALSE_ISR
(
a
,
log_tag
,
format
,
...
)
do
{
\
if
(
unlikely
(
!
(
a
)
)
)
{
\
ESP_EARLY_LOGE
(
log_tag
,
"%s(%d): "
format
,
__FUNCTION__
,
__LINE__
,
##
__VA_ARGS__
)
;
\
return
;
\
}
\
}
while
(
0
)
Arguments
Argument
a
log_tag
format
Examples
References
from
examples
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