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.cpp
- Revision:
- 118:f9e5e2935c5c
- Parent:
- 112:737b08b3b995
- Child:
- 119:3ba3e377b972
diff -r dbc5d7f0fdd5 -r f9e5e2935c5c nRF51GattServer.cpp --- a/nRF51GattServer.cpp Thu Apr 30 08:34:38 2015 +0100 +++ b/nRF51GattServer.cpp Thu Apr 30 08:34:38 2015 +0100 @@ -90,18 +90,18 @@ /* Add optional descriptors if any */ /* ToDo: Make sure we don't overflow the array */ for (uint8_t j = 0; j < p_char->getDescriptorCount(); j++) { - GattAttribute *p_desc = p_char->getDescriptor(j); + GattAttribute *p_desc = p_char->getDescriptor(j); - nordicUUID = custom_convert_to_nordic_uuid(p_desc->getUUID()); + nordicUUID = custom_convert_to_nordic_uuid(p_desc->getUUID()); - ASSERT ( ERROR_NONE == - custom_add_in_descriptor(BLE_GATT_HANDLE_INVALID, - &nordicUUID, - p_desc->getValuePtr(), - p_desc->getInitialLength(), - p_desc->getMaxLength(), - &nrfDescriptorHandles[descriptorCount]), - BLE_ERROR_PARAM_OUT_OF_RANGE ); + ASSERT(ERROR_NONE == + custom_add_in_descriptor(BLE_GATT_HANDLE_INVALID, + &nordicUUID, + p_desc->getValuePtr(), + p_desc->getInitialLength(), + p_desc->getMaxLength(), + &nrfDescriptorHandles[descriptorCount]), + BLE_ERROR_PARAM_OUT_OF_RANGE); uint16_t descHandle = descriptorCount; p_descriptors[descriptorCount++] = p_desc;