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: public/BLEDevice.h
- Revision:
- 518:54731cc463b3
- Parent:
- 514:1fa338281798
- Child:
- 524:6e97ab392e2a
diff -r 3c8170ac2a7f -r 54731cc463b3 public/BLEDevice.h --- a/public/BLEDevice.h Fri Jun 19 15:52:05 2015 +0100 +++ b/public/BLEDevice.h Fri Jun 19 15:52:05 2015 +0100 @@ -1027,13 +1027,13 @@ inline ble_error_t BLEDevice::setTxPower(int8_t txPower) { - return transport->setTxPower(txPower); + return transport->getGap().setTxPower(txPower); } inline void BLEDevice::getPermittedTxPowerValues(const int8_t **valueArrayPP, size_t *countP) { - transport->getPermittedTxPowerValues(valueArrayPP, countP); + transport->getGap().getPermittedTxPowerValues(valueArrayPP, countP); } inline ble_error_t