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.
Dependencies: nrf51-sdk
Dependents: microbit-dal microbit-ble-open microbit-dal-eddystone microbit-dal-ble-accelerometer-example ... more
Diff: btle/btle_discovery.h
- Revision:
- 316:1ccf6ee70900
- Parent:
- 315:044071756a8d
- Child:
- 332:b054000833d4
diff -r 044071756a8d -r 1ccf6ee70900 btle/btle_discovery.h
--- a/btle/btle_discovery.h Fri Jun 19 15:55:30 2015 +0100
+++ b/btle/btle_discovery.h Fri Jun 19 15:55:30 2015 +0100
@@ -86,13 +86,11 @@
void resetDiscoveredServices(void) {
numServices = 0;
serviceIndex = 0;
- memset(services, 0, sizeof(DiscoveredService) * BLE_DB_DISCOVERY_MAX_SRV);
}
void resetDiscoveredCharacteristics(void) {
numCharacteristics = 0;
characteristicIndex = 0;
- memset(characteristics, 0, sizeof(DiscoveredCharacteristic) * BLE_DB_DISCOVERY_MAX_CHAR_PER_SRV);
}
public: