ESP-IDF
proxy_attrs
is only used within ESP-IDF.
Symbol previews are coming soon...
Symbols
loading...
Files
loading (2/5)...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
ESP-IDF
proxy_attrs
proxy_attrs variable
Syntax
Show:
Summary
Declaration
from
proxy_server.c:1137
static
struct
bt_mesh_gatt_attr
proxy_attrs
[
]
=
{
BLE_MESH_GATT_PRIMARY_SERVICE
(
BLE_MESH_UUID_MESH_PROXY
)
,
BLE_MESH_GATT_CHARACTERISTIC
(
BLE_MESH_UUID_MESH_PROXY_DATA_IN
,
BLE_MESH_GATT_CHRC_WRITE_WITHOUT_RESP
)
,
BLE_MESH_GATT_DESCRIPTOR
(
BLE_MESH_UUID_MESH_PROXY_DATA_IN
,
BLE_MESH_GATT_PERM_WRITE
,
NULL
,
proxy_recv
,
NULL
)
,
BLE_MESH_GATT_CHARACTERISTIC
(
BLE_MESH_UUID_MESH_PROXY_DATA_OUT
,
BLE_MESH_GATT_CHRC_NOTIFY
)
,
BLE_MESH_GATT_DESCRIPTOR
(
BLE_MESH_UUID_MESH_PROXY_DATA_OUT
,
BLE_MESH_GATT_PERM_NONE
,
NULL
,
NULL
,
NULL
)
,
BLE_MESH_GATT_DESCRIPTOR
(
BLE_MESH_UUID_GATT_CCC
,
BLE_MESH_GATT_PERM_READ
|
BLE_MESH_GATT_PERM_WRITE
,
proxy_ccc_read
,
proxy_ccc_write
,
&
proxy_ccc_val
)
,
}
;
Examples
References
from
examples
Code
Location
Referrer
static
struct
bt_mesh_gatt_attr
proxy_attrs
[
]
=
{
proxy_server.c:1137
struct
bt_mesh_gatt_service
proxy_svc
=
BLE_MESH_GATT_SERVICE
(
proxy_attrs
)
;
proxy_server.c:1155
return
bt_mesh_gatts_notify
(
conn
,
&
proxy_attrs
[
4
]
,
data
,
len
)
;
proxy_server.c:1305
proxy_send()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
proxy_attrs
is read by 1 function:
All items filtered out
proxy_attrs
proxy_send()
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