NimBLE_Security sample
gatt_svr_svcs
is only used within NimBLE_Security sample.
Symbol previews are coming soon...
Symbols
loading...
Files
loading...
Summary
Syntax
Examples
References
Call Tree
Data Use
Class Tree
Override Tree
Implementations
Instances
Lifecycle
SourceVu
ESP-IDF Framework and Examples
NimBLE_Security sample
gatt_svr_svcs
gatt_svr_svcs variable
Syntax
Show:
Summary
Declaration
from
gatt_svc.c:39
static
const
struct
ble_gatt_svc_def
gatt_svr_svcs
[
]
=
{
{
.
type
=
BLE_GATT_SVC_TYPE_PRIMARY
,
.
uuid
=
&
heart_rate_svc_uuid
.
u
,
.
characteristics
=
(
struct
ble_gatt_chr_def
[
]
)
{
{
.
uuid
=
&
heart_rate_chr_uuid
.
u
,
.
access_cb
=
heart_rate_chr_access
,
.
flags
=
BLE_GATT_CHR_F_READ
|
BLE_GATT_CHR_F_INDICATE
|
BLE_GATT_CHR_F_READ_ENC
,
.
val_handle
=
&
heart_rate_chr_val_handle
}
,
{
0
,
}
}
}
,
{
.
type
=
BLE_GATT_SVC_TYPE_PRIMARY
,
.
uuid
=
&
auto_io_svc_uuid
.
u
,
.
characteristics
=
(
struct
ble_gatt_chr_def
[
]
)
{
{
.
uuid
=
&
led_chr_uuid
.
u
,
.
access_cb
=
led_chr_access
,
.
flags
=
BLE_GATT_CHR_F_WRITE
|
BLE_GATT_CHR_F_WRITE_ENC
,
.
val_handle
=
&
led_chr_val_handle
}
,
{
0
}
}
,
}
,
{
0
,
}
,
}
;
Examples
References
from
examples
Code
Location
Referrer
static
const
struct
ble_gatt_svc_def
gatt_svr_svcs
[
]
=
{
gatt_svc.c:39
rc
=
ble_gatts_count_cfg
(
gatt_svr_svcs
)
;
gatt_svc.c:265
gatt_svc_init()
rc
=
ble_gatts_add_svcs
(
gatt_svr_svcs
)
;
gatt_svc.c:271
gatt_svc_init()
Call Tree
from
examples
All items filtered out
All items filtered out
Data Use
from
examples
gatt_svr_svcs
is read by 1 function:
All items filtered out
gatt_svr_svcs
gatt_svc_init()
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