ESP-IDF
BLE_MESH_TRACE_TAG
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (3/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
BLE_MESH_TRACE_TAG
BLE_MESH_TRACE_TAG macro
Syntax
Show:
Summary
Declaration
from
trace.h:54
#define
BLE_MESH_TRACE_TAG
"BLE_MESH"
Examples
References
from
examples
Code
Location
#define
BLE_MESH_TRACE_TAG
"BLE_MESH"
trace.h:54
#define
BT_ERR
(
fmt
,
args
...
)
do
{
if
(
(
BLE_MESH_LOG_LEVEL
>=
BLE_MESH_LOG_LEVEL_ERROR
)
&&
BLE_MESH_LOG_LEVEL_CHECK
(
BLE_MESH
,
ERROR
)
)
BLE_MESH_PRINT_E
(
BLE_MESH_TRACE_TAG
,
fmt
,
##
args
)
;
}
while
(
0
)
trace.h:84
#define
BT_WARN
(
fmt
,
args
...
)
do
{
if
(
(
BLE_MESH_LOG_LEVEL
>=
BLE_MESH_LOG_LEVEL_WARN
)
&&
BLE_MESH_LOG_LEVEL_CHECK
(
BLE_MESH
,
WARN
)
)
BLE_MESH_PRINT_W
(
BLE_MESH_TRACE_TAG
,
fmt
,
##
args
)
;
}
while
(
0
)
trace.h:85
#define
BT_INFO
(
fmt
,
args
...
)
do
{
if
(
(
BLE_MESH_LOG_LEVEL
>=
BLE_MESH_LOG_LEVEL_INFO
)
&&
BLE_MESH_LOG_LEVEL_CHECK
(
BLE_MESH
,
INFO
)
)
BLE_MESH_PRINT_I
(
BLE_MESH_TRACE_TAG
,
fmt
,
##
args
)
;
}
while
(
0
)
trace.h:86
#define
BT_DBG
(
fmt
,
args
...
)
do
{
if
(
(
BLE_MESH_LOG_LEVEL
>=
BLE_MESH_LOG_LEVEL_DEBUG
)
&&
BLE_MESH_LOG_LEVEL_CHECK
(
BLE_MESH
,
DEBUG
)
)
BLE_MESH_PRINT_D
(
BLE_MESH_TRACE_TAG
,
fmt
,
##
args
)
;
}
while
(
0
)
trace.h:87
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