Structure representing a single GATT service.
Synopsis:
typedef struct {
char uuid [39];
uint16_t handle ;
uint16_t start_handle ;
uint16_t end_handle ;
}bt_gatt_included_service_t;
Data:
- char uuid[39]
- The universally unique identifier (UUID) for the included Bluetooth service.
- uint16_t handle
- The handle of the included service.
- uint16_t start_handle
- The included service's starting attribute handle.
- uint16_t end_handle
- The end group handle of the included service.
Library:
libbtapi (For the qcc command, use the -l btapi option to link against this library)
Description: