High level Bluetooth Low Energy API and radio abstraction layer
Fork of BLE_API by
Diff: public/BLEDevice.h
- Revision:
- 518:54731cc463b3
- Parent:
- 514:1fa338281798
- Child:
- 524:6e97ab392e2a
--- 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