Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
Fork of nRF51822 by
Diff: nRF51GattServer.h
- Revision:
- 56:a1071b629aa3
- Parent:
- 52:120bd37b9d0d
- Child:
- 57:2aa01a5008ac
--- a/nRF51GattServer.h Fri Jul 25 10:33:52 2014 +0100 +++ b/nRF51GattServer.h Tue Sep 02 15:50:05 2014 +0100 @@ -24,6 +24,7 @@ #include "public/GattServer.h" #define BLE_TOTAL_CHARACTERISTICS 10 +#define BLE_TOTAL_DESCRIPTORS 10 class nRF51GattServer : public GattServer { @@ -38,11 +39,6 @@ virtual ble_error_t readValue(uint16_t handle, uint8_t buffer[], uint16_t *const lengthP); virtual ble_error_t updateValue(uint16_t, uint8_t[], uint16_t, bool localOnly = false); - virtual ble_error_t setDeviceName(const uint8_t *deviceName); - virtual ble_error_t getDeviceName(uint8_t *deviceName, unsigned *lengthP); - virtual ble_error_t setAppearance(uint16_t appearance); - virtual ble_error_t getAppearance(uint16_t *appearanceP); - /* nRF51 Functions */ void eventCallback(void); void hwCallback(ble_evt_t *p_ble_evt); @@ -50,10 +46,13 @@ private: GattCharacteristic *p_characteristics[BLE_TOTAL_CHARACTERISTICS]; ble_gatts_char_handles_t nrfCharacteristicHandles[BLE_TOTAL_CHARACTERISTICS]; + GattAttribute *p_descriptors[BLE_TOTAL_DESCRIPTORS]; + uint16_t nrfDescriptorHandles[BLE_TOTAL_DESCRIPTORS]; nRF51GattServer() { serviceCount = 0; characteristicCount = 0; + descriptorCount = 0; }; nRF51GattServer(nRF51GattServer const &);