High level Bluetooth Low Energy API and radio abstraction layer

Dependencies:   nRF51822

Dependents:   LinkNode_LIS3DH

Fork of BLE_API by Bluetooth Low Energy

Revision:
528:8d21604fe31d
Parent:
527:493185cebc03
Child:
567:e4b38e43de7c
--- a/services/LinkLossService.h	Fri Jun 19 15:52:07 2015 +0100
+++ b/services/LinkLossService.h	Fri Jun 19 15:52:07 2015 +0100
@@ -37,9 +37,9 @@
 
     /**
      * @param[ref] ble
-     *                 BLEDevice object for the underlying controller.
+     *               BLE object for the underlying controller.
      */
-    LinkLossService(BLEDevice &bleIn, callback_t callbackIn, AlertLevel_t levelIn = NO_ALERT) :
+    LinkLossService(BLE &bleIn, callback_t callbackIn, AlertLevel_t levelIn = NO_ALERT) :
         ble(bleIn),
         alertLevel(levelIn),
         callback(callbackIn),
@@ -93,7 +93,7 @@
     }
 
 protected:
-    BLEDevice    &ble;
+    BLE          &ble;
     AlertLevel_t  alertLevel;
     callback_t    callback;