bt_gatt_characteristic_t

Structure representing a single Generic Attribute (GATT) characteristic.

Synopsis:

typedef struct  {
    char uuid [39];
    uint16_t handle ;
    bt_gatt_char_prop_mask properties ;
    uint16_t value_handle ;
}bt_gatt_characteristic_t;

Since:

BlackBerry 10.0.0

Data:

char uuid[39]
The string universally unique identifier (UUID) for the given characteristic.
uint16_t handle
The handle of the characteristic.
bt_gatt_char_prop_mask properties
The properties for the characteristic.
uint16_t value_handle
The handle containing the data.

Library:

libbtapi (For the qcc command, use the -l btapi option to link against this library)

Description: