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.
Dependents: Hello_BLE F446RE-BLE
Fork of X_NUCLEO_IDB0XA1 by
Diff: BlueNRGGattServer.cpp
- Revision:
- 113:31c73e9b0108
- Parent:
- 112:6dc0ad44750d
- Child:
- 125:2e468f07a94f
diff -r 6dc0ad44750d -r 31c73e9b0108 BlueNRGGattServer.cpp
--- a/BlueNRGGattServer.cpp Tue Aug 11 13:11:01 2015 +0200
+++ b/BlueNRGGattServer.cpp Tue Aug 11 13:20:31 2015 +0200
@@ -206,7 +206,7 @@
for(uint8_t descIndex=0; descIndex<p_char->getDescriptorCount(); descIndex++) {
GattAttribute *descriptor = p_char->getDescriptor(descIndex);
uint16_t shortUUID = descriptor->getUUID().getShortUUID();
- const uint8_t uuidArray[] = {(shortUUID>>8)&0xFF, (shortUUID&0xFF)};
+ const uint8_t uuidArray[] = {(uint8_t)((shortUUID>>8)&0xFF), (uint8_t)((shortUUID&0xFF))};
ret = aci_gatt_add_char_desc(service.getHandle(), p_char->getValueAttribute().getHandle(),
CHAR_DESC_TYPE_16_BIT, uuidArray, descriptor->getMaxLength(), descriptor->getInitialLength(),
descriptor->getValuePtr(), CHAR_DESC_SECURITY_PERMISSION, CHAR_DESC_ACCESS_PERMISSION, GATT_NOTIFY_ATTRIBUTE_WRITE,
