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 X_NUCLEO_IDB0XA1 by
Diff: source/BlueNRGGap.cpp
- Revision:
- 142:adf1567d3900
- Parent:
- 138:32e3c4ca7a45
- Child:
- 144:bdf5e8432131
--- a/source/BlueNRGGap.cpp Fri Oct 09 09:56:12 2015 +0200 +++ b/source/BlueNRGGap.cpp Fri Oct 16 15:59:23 2015 +0200 @@ -524,6 +524,9 @@ /**************************************************************************/ ble_error_t BlueNRGGap::disconnect(Gap::DisconnectionReason_t reason) { + /* avoid compiler warnings about unused variables */ + (void)reason; + tBleStatus ret; //For Reason codes check BlueTooth HCI Spec @@ -564,6 +567,9 @@ /**************************************************************************/ ble_error_t BlueNRGGap::disconnect(Handle_t connectionHandle, Gap::DisconnectionReason_t reason) { + /* avoid compiler warnings about unused variables */ + (void)reason; + tBleStatus ret; //For Reason codes check BlueTooth HCI Spec @@ -713,6 +719,9 @@ /**************************************************************************/ ble_error_t BlueNRGGap::getPreferredConnectionParams(ConnectionParams_t *params) { + /* avoid compiler warnings about unused variables */ + (void)params; + return BLE_ERROR_NONE; } @@ -732,6 +741,9 @@ /**************************************************************************/ ble_error_t BlueNRGGap::setPreferredConnectionParams(const ConnectionParams_t *params) { + /* avoid compiler warnings about unused variables */ + (void)params; + return BLE_ERROR_NONE; } @@ -750,6 +762,10 @@ /**************************************************************************/ ble_error_t BlueNRGGap::updateConnectionParams(Handle_t handle, const ConnectionParams_t *params) { + /* avoid compiler warnings about unused variables */ + (void) handle; + (void)params; + return BLE_ERROR_NONE; } @@ -965,6 +981,8 @@ uint8_t *data, uint8_t *RSSI) { + /* avoid compiler warnings about unused variables */ + (void)addr_type; switch (reason) { case DEVICE_FOUND: @@ -985,6 +1003,9 @@ break; case ADV_NONCONN_IND: type = GapAdvertisingParams::ADV_NON_CONNECTABLE_UNDIRECTED; + break; + default: + type = GapAdvertisingParams::ADV_CONNECTABLE_UNDIRECTED; } PRINTF("adv peerAddr[%02x %02x %02x %02x %02x %02x] \r\n", @@ -1126,6 +1147,11 @@ const ConnectionParams_t *connectionParams, const GapScanningParams *scanParams) { + /* avoid compiler warnings about unused variables */ + (void)peerAddrType; + (void)connectionParams; + (void)scanParams; + // Save the peer address for(int i=0; i<BDADDR_SIZE; i++) { _peerAddr[i] = peerAddr[i];