GATTS_Service_T
C
typedef struct GATTS_Service_T
{
struct GATTS_Service_T *p_next;
GATTS_Attribute_T *p_attrList;
GATTS_CccdSetting_T const *p_cccdSetting;
uint16_t startHandle;
uint16_t endHandle;
uint8_t cccdNumber;
} GATTS_Service_T;Description
Service table parameters.
Field Documentation
| Field | Description |
|---|---|
| p_next | For internal use only. |
| p_attrList | Pointer to attribute list in this service. |
| p_cccdSetting | CCCD information of the service. Can be null. |
| startHandle | The handle of the first attribute in this group. |
| endHandle | The handle of the last attribute in this group. |
| cccdNumber | Number of CCCD in the service. |
