BLE: Update GattServer documentation.

pull/5549/head
Vincent Coubard 2017-11-21 18:30:08 +00:00
parent c4351d31d8
commit d153af332c
3 changed files with 2181 additions and 867 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -14,8 +14,8 @@
* limitations under the License.
*/
#ifndef __GATT_SERVICE_H__
#define __GATT_SERVICE_H__
#ifndef MBED_GATT_SERVICE_H__
#define MBED_GATT_SERVICE_H__
#include "UUID.h"
#include "GattCharacteristic.h"
@ -29,49 +29,132 @@
* @{
*/
/**
* Representation of a GattServer service.
*
* A service is a cohesive collection of characteristics. It is identified by a
* UUID and starts at a specific handle of its GattServer.
*/
class GattService {
public:
enum {
UUID_ALERT_NOTIFICATION_SERVICE = 0x1811,
UUID_BATTERY_SERVICE = 0x180F,
UUID_BLOOD_PRESSURE_SERVICE = 0x1810,
UUID_CURRENT_TIME_SERVICE = 0x1805,
UUID_CYCLING_SPEED_AND_CADENCE = 0x1816,
UUID_DEVICE_INFORMATION_SERVICE = 0x180A,
UUID_ENVIRONMENTAL_SERVICE = 0x181A,
UUID_GLUCOSE_SERVICE = 0x1808,
UUID_HEALTH_THERMOMETER_SERVICE = 0x1809,
UUID_HEART_RATE_SERVICE = 0x180D,
/**
* UUID of the Alert Notification service.
*/
UUID_ALERT_NOTIFICATION_SERVICE = 0x1811,
/**
* UUID of the Battery service.
*/
UUID_BATTERY_SERVICE = 0x180F,
/**
* UUID of the Blood Pressure service.
*/
UUID_BLOOD_PRESSURE_SERVICE = 0x1810,
/**
* UUID of the Current Time service.
*/
UUID_CURRENT_TIME_SERVICE = 0x1805,
/**
* UUID of the Cycling Speed and Carence (CSC) service.
*/
UUID_CYCLING_SPEED_AND_CADENCE = 0x1816,
/**
* UUID of the Device Information Service (DIS).
*/
UUID_DEVICE_INFORMATION_SERVICE = 0x180A,
/**
* UUID of the environmental service.
*/
UUID_ENVIRONMENTAL_SERVICE = 0x181A,
/**
* UUID of the Glucose service.
*/
UUID_GLUCOSE_SERVICE = 0x1808,
/**
* UUID of the health thermometer.
*/
UUID_HEALTH_THERMOMETER_SERVICE = 0x1809,
/**
* UUID of the Heart Rate service.
*/
UUID_HEART_RATE_SERVICE = 0x180D,
/**
* UUID of the Human Interface Device (HID) service.
*/
UUID_HUMAN_INTERFACE_DEVICE_SERVICE = 0x1812,
UUID_IMMEDIATE_ALERT_SERVICE = 0x1802,
UUID_LINK_LOSS_SERVICE = 0x1803,
UUID_NEXT_DST_CHANGE_SERVICE = 0x1807,
UUID_PHONE_ALERT_STATUS_SERVICE = 0x180E,
UUID_REFERENCE_TIME_UPDATE_SERVICE = 0x1806,
UUID_RUNNING_SPEED_AND_CADENCE = 0x1814,
UUID_SCAN_PARAMETERS_SERVICE = 0x1813,
UUID_TX_POWER_SERVICE = 0x1804
/**
* UUID of the Immediate Alert service.
*/
UUID_IMMEDIATE_ALERT_SERVICE = 0x1802,
/**
* UUID of the Link Loss service.
*/
UUID_LINK_LOSS_SERVICE = 0x1803,
/**
* UUID of the Next DST change service.
*/
UUID_NEXT_DST_CHANGE_SERVICE = 0x1807,
/**
* UUID of the Phone Alert Status service.
*/
UUID_PHONE_ALERT_STATUS_SERVICE = 0x180E,
/**
* UUID of the Reference Time Update service.
*/
UUID_REFERENCE_TIME_UPDATE_SERVICE = 0x1806,
/**
* UUID od the Running Speed and Cadence (RSC) service.
*/
UUID_RUNNING_SPEED_AND_CADENCE = 0x1814,
/**
* UUID of the Scan Parameter service.
*/
UUID_SCAN_PARAMETERS_SERVICE = 0x1813,
/**
* UUID of the TX power service.
*/
UUID_TX_POWER_SERVICE = 0x1804
};
public:
/**
* @brief Creates a new GattService using the specified UUID and characteristics.
* Construct a GattService.
*
* @note The UUID value must be unique and is normally >1.
* @param[in] uuid The UUID assigned to this service.
* @param[in] characteristics A pointer to the array of characteristics that
* belongs to the service.
* @param[in] numCharacteristics The number of characteristics.
*
* @param[in] uuid
* The UUID to use for this service.
* @param[in] characteristics
* A pointer to an array of characteristics to be included within this service.
* @param[in] numCharacteristics
* The number of characteristics.
* @important The characteristics of the service must remain valid while the
* GattServer use the service.
*/
GattService(const UUID &uuid, GattCharacteristic *characteristics[], unsigned numCharacteristics) :
GattService(
const UUID &uuid,
GattCharacteristic *characteristics[],
unsigned numCharacteristics
) :
_primaryServiceID(uuid),
_characteristicCount(numCharacteristics),
_characteristics(characteristics),
_handle(0) {
/* empty */
}
/**
@ -79,16 +162,18 @@ public:
*
* @return A reference to the service's UUID.
*/
const UUID &getUUID(void) const {
const UUID &getUUID(void) const
{
return _primaryServiceID;
}
/**
* Get handle of the service declaration attribute in the ATT table.
* Get the handle of the service declaration attribute in the ATT table.
*
* @return The service's handle.
*/
uint16_t getHandle(void) const {
uint16_t getHandle(void) const
{
return _handle;
}
@ -97,29 +182,32 @@ public:
*
* @return The total number of characteristics within this service.
*/
uint8_t getCharacteristicCount(void) const {
uint8_t getCharacteristicCount(void) const
{
return _characteristicCount;
}
/**
* Set the handle of the service declaration attribute in the ATT table.
*
* @param[in] handle
* The service's handle.
* @important Application code must not use this API.
*
* @param[in] handle The service's handle.
*/
void setHandle(uint16_t handle) {
void setHandle(uint16_t handle)
{
_handle = handle;
}
/**
* Get this service's characteristic at a specific index.
*
* @param[in] index
* The index of the characteristic.
* @param[in] index The index of the characteristic.
*
* @return A pointer to the characteristic at index @p index.
*/
GattCharacteristic *getCharacteristic(uint8_t index) {
GattCharacteristic *getCharacteristic(uint8_t index)
{
if (index >= _characteristicCount) {
return NULL;
}
@ -131,22 +219,25 @@ private:
/**
* This service's UUID.
*/
UUID _primaryServiceID;
UUID _primaryServiceID;
/**
* Total number of characteristics within this service.
*/
uint8_t _characteristicCount;
uint8_t _characteristicCount;
/**
* An array with pointers to the characteristics added to this service.
*/
GattCharacteristic **_characteristics;
/**
* Handle of the service declaration attribute in the ATT table.
*
* @note The underlying BLE stack generally assigns this handle when the
* service is added to the ATT table.
* service is added to the ATT table.
*/
uint16_t _handle;
uint16_t _handle;
};
/**
@ -155,5 +246,4 @@ private:
* @}
*/
#endif /* ifndef __GATT_SERVICE_H__ */
#endif /* ifndef MBED_GATT_SERVICE_H__ */