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: BLE_ANCS_SDAPI BLE_temperature BLE_HeartRate BLE_ANCS_SDAPI_IRC ... more
Diff: services/DeviceInformationService.h
- Revision:
- 671:33ec93d25695
- Parent:
- 669:7179b4a5aa7d
- Child:
- 710:b2e1a2660ec2
diff -r 5e4aecd9af5b -r 33ec93d25695 services/DeviceInformationService.h
--- a/services/DeviceInformationService.h Fri Jun 19 15:53:01 2015 +0100
+++ b/services/DeviceInformationService.h Fri Jun 19 15:53:01 2015 +0100
@@ -17,7 +17,7 @@
#ifndef __BLE_DEVICE_INFORMATION_SERVICE_H__
#define __BLE_DEVICE_INFORMATION_SERVICE_H__
-#include "BLEDevice.h"
+#include "BLE.h"
/**
* @class DeviceInformationService
@@ -31,7 +31,7 @@
* @brief Device Information Service Constructor.
*
* @param[ref] _ble
- * BLEDevice object for the underlying controller.
+ * BLE object for the underlying controller.
* @param[in] manufacturersName
* This characteristic represents the name of the
* manufacturer of the device. The name is copied into the
@@ -57,7 +57,7 @@
* the software within the device. The value is copied
* into the BLE stack during this constructor.
*/
- DeviceInformationService(BLEDevice &_ble,
+ DeviceInformationService(BLE &_ble,
const char *manufacturersName = NULL,
const char *modelNumber = NULL,
const char *serialNumber = NULL,
@@ -115,7 +115,7 @@
}
protected:
- BLEDevice &ble;
+ BLE &ble;
GattCharacteristic manufacturersNameStringCharacteristic;
GattCharacteristic modelNumberStringCharacteristic;
GattCharacteristic serialNumberStringCharacteristic;