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: mbed_EddystoneURL_Beacon_ssci mbed_EddystoneURL_Beacon_ssci mbed_EddystoneURL_Beacon_ssci
Fork of BLE_API by
Diff: ble/GapAdvertisingData.h
- Revision:
- 763:36c3e2b1f1ae
- Parent:
- 756:503c4bd89a3d
- Child:
- 765:4cd91998cd48
diff -r 89ec64c66d94 -r 36c3e2b1f1ae ble/GapAdvertisingData.h
--- a/ble/GapAdvertisingData.h Fri Aug 07 15:53:49 2015 +0100
+++ b/ble/GapAdvertisingData.h Fri Aug 07 15:53:49 2015 +0100
@@ -234,6 +234,33 @@
}
/**
+ * update one advertising data field with the same AD type (see DataType)
+ *
+ * @param advDataType The Advertising 'DataType' to add
+ * @param payload Pointer to the payload contents
+ * @param len Size of the payload in bytes
+ *
+ * @return BLE_ERROR_UNSPECIFIED if the specified field is not found, else
+ * BLE_ERROR_NONE.
+ */
+ ble_error_t updateData(DataType advDataType, const uint8_t *payload, uint8_t len)
+ {
+ uint8_t byteIndex = 0;
+
+ while (byteIndex < _payloadLen) {
+ if (_payload[byteIndex + 1] == advDataType) { /* Check adv type */
+ if (_payload[byteIndex] == (len + 1)) { /* Check adv field length */
+ memcpy(&_payload[byteIndex + 2], payload, len);
+ }
+ return BLE_ERROR_NONE;
+ }
+ byteIndex += (_payload[byteIndex] + 1);
+ }
+
+ return BLE_ERROR_UNSPECIFIED;
+ }
+
+ /**
* Helper function to add APPEARANCE data to the advertising payload
*
* @param appearance
