ESP-IDF
bt_mesh_node
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Related
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
bt_mesh_node
bt_mesh_node struct
Syntax
Show:
Summary
Declaration
from
pvnr_mgmt.h:21
struct
bt_mesh_node
{
uint8_t
addr
[
6
]
;
uint8_t
addr_type
;
uint8_t
dev_uuid
[
16
]
;
uint16_t
oob_info
;
uint16_t
unicast_addr
;
uint8_t
element_num
;
uint16_t
net_idx
;
uint8_t
flags
;
uint32_t
iv_index
;
uint8_t
dev_key
[
16
]
;
char
name
[
BLE_MESH_NODE_NAME_SIZE
+
1
]
;
uint16_t
comp_length
;
uint8_t
*
comp_data
;
}
;
Fields
Field
Declared as
bt_mesh_node::addr
uint8_t
[
6
]
bt_mesh_node::addr_type
uint8_t
bt_mesh_node::dev_uuid
uint8_t
[
16
]
bt_mesh_node::oob_info
uint16_t
bt_mesh_node::unicast_addr
uint16_t
bt_mesh_node::element_num
uint8_t
bt_mesh_node::net_idx
uint16_t
bt_mesh_node::flags
uint8_t
bt_mesh_node::iv_index
uint32_t
bt_mesh_node::dev_key
uint8_t
[
16
]
bt_mesh_node::name
char
[
BLE_MESH_NODE_NAME_SIZE
+
1
]
bt_mesh_node::comp_length
uint16_t
bt_mesh_node::comp_data
uint8_t
*
Related Functions
Found 6 other functions taking a
bt_mesh_node
argument:
Function
provisioner_store_node()
bt_mesh_provisioner_restore_node_info()
bt_mesh_store_node_info()
bt_mesh_store_node_name()
bt_mesh_store_node_comp_data()
bt_mesh_provisioner_store_node_info()
Examples
References
from
examples
Code
Location
Scope
Referrer
struct
bt_mesh_node
{
net.h:43
struct
bt_mesh_node
{
pvnr_mgmt.h:21
return
NODE
(
node
)
->
dev_uuid
;
ext.c:1482
bt_mesh_ext_pvnr_get_node_uuid()
struct
bt_mesh_node
*
node
=
NULL
;
prov_pvnr.c:1957
send_prov_data()
static
struct
bt_mesh_node
*
mesh_nodes
[
CONFIG_BLE_MESH_MAX_PROV_NODES
]
;
pvnr_mgmt.c:31
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:206
bt_mesh_provisioner_check_is_addr_dup()
static
int
provisioner_store_node
(
struct
bt_mesh_node
*
node
,
bool
store
,
uint16_t
*
index
)
pvnr_mgmt.c:262
provisioner_store_node()
provisioner_store_node()::node
mesh_nodes
[
i
]
=
bt_mesh_calloc
(
sizeof
(
struct
bt_mesh_node
)
)
;
pvnr_mgmt.c:279
provisioner_store_node()
memcpy
(
mesh_nodes
[
i
]
,
node
,
sizeof
(
struct
bt_mesh_node
)
)
;
pvnr_mgmt.c:286
provisioner_store_node()
int
bt_mesh_provisioner_restore_node_info
(
struct
bt_mesh_node
*
node
)
pvnr_mgmt.c:306
bt_mesh_provisioner_restore_node_info()
bt_mesh_provisioner_restore_node_info()::node
struct
bt_mesh_node
node
=
{
0
}
;
pvnr_mgmt.c:322
bt_mesh_provisioner_provision()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:355
provisioner_remove_node()
static
struct
bt_mesh_node
*
provisioner_find_node_with_uuid
(
const
uint8_t
uuid
[
16
]
,
uint16_t
*
index
)
pvnr_mgmt.c:403
provisioner_find_node_with_uuid()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:430
bt_mesh_provisioner_remove_node()
static
struct
bt_mesh_node
*
provisioner_find_node_with_addr
(
uint16_t
addr
,
uint16_t
*
index
)
pvnr_mgmt.c:453
provisioner_find_node_with_addr()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:455
provisioner_find_node_with_addr()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:483
bt_mesh_provisioner_restore_node_name()
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_uuid
(
const
uint8_t
uuid
[
16
]
)
pvnr_mgmt.c:497
bt_mesh_provisioner_get_node_with_uuid()
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_addr
(
uint16_t
unicast_addr
)
pvnr_mgmt.c:502
bt_mesh_provisioner_get_node_with_addr()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:509
bt_mesh_provisioner_delete_node_with_uuid()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:524
bt_mesh_provisioner_delete_node_with_node_addr()
static
struct
bt_mesh_node
*
*
provisioner_find_node_with_name
(
const
char
*
name
)
pvnr_mgmt.c:552
provisioner_find_node_with_name()
struct
bt_mesh_node
*
*
node
=
NULL
;
pvnr_mgmt.c:628
bt_mesh_provisioner_get_node_index()
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_name
(
const
char
*
name
)
pvnr_mgmt.c:644
bt_mesh_provisioner_get_node_with_name()
struct
bt_mesh_node
*
*
node
=
NULL
;
pvnr_mgmt.c:646
bt_mesh_provisioner_get_node_with_name()
const
struct
bt_mesh_node
*
*
bt_mesh_provisioner_get_node_table_entry
(
void
)
pvnr_mgmt.c:662
bt_mesh_provisioner_get_node_table_entry()
return
(
const
struct
bt_mesh_node
*
*
)
mesh_nodes
;
pvnr_mgmt.c:664
bt_mesh_provisioner_get_node_table_entry()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:671
store_node_comp_data()
struct
bt_mesh_node
*
node
=
NULL
;
pvnr_mgmt.c:738
bt_mesh_provisioner_check_msg_dst()
struct
bt_mesh_node
*
node
=
mesh_nodes
[
i
]
;
pvnr_mgmt.c:770
bt_mesh_provisioner_dev_key_get()
int
bt_mesh_provisioner_restore_node_info
(
struct
bt_mesh_node
*
node
)
;
pvnr_mgmt.h:54
bt_mesh_provisioner_restore_node_info()
bt_mesh_provisioner_restore_node_info()::node
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_uuid
(
const
uint8_t
uuid
[
16
]
)
;
pvnr_mgmt.h:68
bt_mesh_provisioner_get_node_with_uuid()
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_addr
(
uint16_t
unicast_addr
)
;
pvnr_mgmt.h:70
bt_mesh_provisioner_get_node_with_addr()
struct
bt_mesh_node
*
bt_mesh_provisioner_get_node_with_name
(
const
char
*
name
)
;
pvnr_mgmt.h:84
bt_mesh_provisioner_get_node_with_name()
const
struct
bt_mesh_node
*
*
bt_mesh_provisioner_get_node_table_entry
(
void
)
;
pvnr_mgmt.h:86
bt_mesh_provisioner_get_node_table_entry()
int
bt_mesh_provisioner_store_node_info
(
struct
bt_mesh_node
*
node
)
;
pvnr_mgmt.h:116
bt_mesh_provisioner_store_node_info()
bt_mesh_provisioner_store_node_info()::node
void
bt_mesh_store_node_info
(
struct
bt_mesh_node
*
node
)
;
settings.h:59
bt_mesh_store_node_info()
bt_mesh_store_node_info()::node
void
bt_mesh_store_node_name
(
struct
bt_mesh_node
*
node
)
;
settings.h:61
bt_mesh_store_node_name()
bt_mesh_store_node_name()::node
void
bt_mesh_store_node_comp_data
(
struct
bt_mesh_node
*
node
)
;
settings.h:62
bt_mesh_store_node_comp_data()
bt_mesh_store_node_comp_data()::node
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
Instance
Scope
Location
Project
bt_mesh_provisioner_restore_node_info()::node
bt_mesh_provisioner_restore_node_info()
pvnr_mgmt.h:54
return
bt_mesh_provisioner_get_node_with_uuid()
pvnr_mgmt.h:68
return
bt_mesh_provisioner_get_node_with_addr()
pvnr_mgmt.h:70
return
bt_mesh_provisioner_get_node_with_name()
pvnr_mgmt.h:84
return
bt_mesh_provisioner_get_node_table_entry()
pvnr_mgmt.h:86
bt_mesh_provisioner_store_node_info()::node
bt_mesh_provisioner_store_node_info()
pvnr_mgmt.h:116
bt_mesh_store_node_info()::node
bt_mesh_store_node_info()
settings.h:59
bt_mesh_store_node_name()::node
bt_mesh_store_node_name()
settings.h:61
bt_mesh_store_node_comp_data()::node
bt_mesh_store_node_comp_data()
settings.h:62
mesh_nodes
pvnr_mgmt.c:31
provisioner_store_node()::node
provisioner_store_node()
pvnr_mgmt.c:262
bt_mesh_provisioner_restore_node_info()::node
bt_mesh_provisioner_restore_node_info()
pvnr_mgmt.c:306
return
provisioner_find_node_with_uuid()
pvnr_mgmt.c:403
return
provisioner_find_node_with_addr()
pvnr_mgmt.c:453
return
bt_mesh_provisioner_get_node_with_uuid()
pvnr_mgmt.c:497
return
bt_mesh_provisioner_get_node_with_addr()
pvnr_mgmt.c:502
return
provisioner_find_node_with_name()
pvnr_mgmt.c:552
return
bt_mesh_provisioner_get_node_with_name()
pvnr_mgmt.c:644
return
bt_mesh_provisioner_get_node_table_entry()
pvnr_mgmt.c:662
Lifecycle
from
examples
All items filtered out
All items filtered out