Macros |
|
| #define | BLE_EVT_PTR_ALIGNMENT 4 |
|
Required pointer alignment for BLE Events.
|
|
| #define | BLE_MAX (a, b) ((a) < (b) ? (b) : (a)) |
|
Leaves the maximum of the two arguments.
|
|
| #define | BLE_EVT_LEN_MAX (ATT_MTU) |
|
Maximum possible length for BLE Events.
More...
|
|
Detailed Description
Macro Definition Documentation
| #define BLE_EVT_LEN_MAX | ( | ATT_MTU | ) |
Value:
(
BLE_MAX
( \
sizeof
(
ble_evt_t
), \
BLE_MAX
( \
offsetof(
ble_evt_t
, evt.
gattc_evt
.
params
.
rel_disc_rsp
.
includes
) + ((ATT_MTU) - 2) / 6 *
sizeof
(
ble_gattc_include_t
), \
offsetof(
ble_evt_t
, evt.
gattc_evt
.
params
.
attr_info_disc_rsp
.
info
.
attr_info16
) + ((ATT_MTU) - 2) / 4 *
sizeof
(
ble_gattc_attr_info16_t
) \
) \
))
Maximum possible length for BLE Events.
- Note
- The highest value used for ble_gatt_conn_cfg_t::att_mtu in any connection configuration shall be used as a parameter. If that value has not been configured for any connections then BLE_GATT_ATT_MTU_DEFAULT must be used instead.