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.
Fork of BLE_API by
Diff: services/UARTService.h
- Revision:
- 528:8d21604fe31d
- Parent:
- 527:493185cebc03
- Child:
- 567:e4b38e43de7c
--- a/services/UARTService.h Fri Jun 19 15:52:07 2015 +0100 +++ b/services/UARTService.h Fri Jun 19 15:52:07 2015 +0100 @@ -21,7 +21,7 @@ #include "Stream.h" #include "UUID.h" -#include "BLEDevice.h" +#include "BLE.h" extern const uint8_t UARTServiceBaseUUID[UUID::LENGTH_OF_LONG_UUID]; extern const uint16_t UARTServiceShortUUID; @@ -48,9 +48,9 @@ /** * @param[ref] ble - * BLEDevice object for the underlying controller. + * BLE object for the underlying controller. */ - UARTService(BLEDevice &_ble) : + UARTService(BLE &_ble) : ble(_ble), receiveBuffer(), sendBuffer(), @@ -179,7 +179,7 @@ } private: - BLEDevice &ble; + BLE &ble; uint8_t receiveBuffer[BLE_UART_SERVICE_MAX_DATA_LEN]; /**< The local buffer into which we receive * inbound data before forwarding it to the