Sergey Solodunov / nRF51822

Dependencies:   nrf51-sdk

Fork of nRF51822 by Nordic Semiconductor

Files at this revision

API Documentation at this revision

Comitter:
rgrover1
Date:
Fri Jun 19 15:55:31 2015 +0100
Parent:
319:cf62d065e70a
Child:
321:3ece9d123429
Commit message:
Synchronized with git rev 91c7c03e
Author: Rohit Grover
DiscoveredServiceCallback() now takes a pointer instead of a reference.

Changed in this revision

btle/btle_discovery.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/btle/btle_discovery.cpp	Fri Jun 19 15:55:31 2015 +0100
+++ b/btle/btle_discovery.cpp	Fri Jun 19 15:55:31 2015 +0100
@@ -311,7 +311,7 @@
         if ((matchingServiceUUID == UUID::ShortUUIDBytes_t(BLE_UUID_UNKNOWN)) ||
             (matchingServiceUUID == services[serviceIndex].getUUID().getShortUUID())) {
             if (serviceCallback) {
-                serviceCallback(services[serviceIndex]);
+                serviceCallback(&services[serviceIndex]);
             }
 
             if ((state == SERVICE_DISCOVERY_ACTIVE) && characteristicCallback) {