Added an EddystoneURLConfigService in addition to UriBeaconConfigService. Updated README and converted comments that used UriBeacon to EddystoneURL in the EddystoneService.h

Dependents:   mbed_EddystoneURL_Beacon_ssci mbed_EddystoneURL_Beacon_ssci mbed_EddystoneURL_Beacon_ssci

Fork of BLE_API by Bluetooth Low Energy

Revision:
455:b117ff978aec
Parent:
440:21c83c010895
Child:
456:ff4ffb69e19f
--- a/public/ServiceDiscovery.h	Fri Jun 19 15:51:57 2015 +0100
+++ b/public/ServiceDiscovery.h	Fri Jun 19 15:51:57 2015 +0100
@@ -139,13 +139,10 @@
 
 public:
     static ble_error_t launch(Gap::Handle_t            connectionHandle,
-                              ServiceCallback_t        sc,
-                              CharacteristicCallback_t cc = NULL);
-    static ble_error_t launch(Gap::Handle_t            connectionHandle,
-                              UUID                     matchingServiceUUIDIn,
-                              ServiceCallback_t        sc,
-                              UUID                     matchingCharacteristicUUIDIn = ShortUUIDBytes_t(BLE_UUID_UNKNOWN),
-                              CharacteristicCallback_t cc = NULL);
+                              ServiceCallback_t        sc = NULL,
+                              CharacteristicCallback_t cc = NULL,
+                              UUID                     matchingServiceUUID = ShortUUIDBytes_t(BLE_UUID_UNKNOWN),
+                              UUID                     matchingCharacteristicUUIDIn = ShortUUIDBytes_t(BLE_UUID_UNKNOWN));
 
     static void        terminate(void);