ESP-IDF
ESP_RETURN_VOID_ON_ERROR
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_ERROR
ESP_RETURN_VOID_ON_ERROR macro
Macro which can be used to check the error code. If the code is not ESP_OK, it prints the message and returns. This macro is used when the function returns void.
Syntax
Show:
Summary
Declaration
from
esp_check.h:325
#define
ESP_RETURN_VOID_ON_ERROR
(
x
,
log_tag
,
format
,
...
)
do
{
\
esp_err_t
err_rc_
=
(
x
)
;
\
if
(
unlikely
(
err_rc_
!=
ESP_OK
)
)
{
\
ESP_LOGE
(
log_tag
,
"%s(%d): "
format
,
__FUNCTION__
,
__LINE__
,
##
__VA_ARGS__
)
;
\
return
;
\
}
\
}
while
(
0
)
Arguments
Argument
x
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