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: microbit-dal microbit-dal microbit-ble-open microbit-dal ... more
Fork of BLE_API by
Revision 772:b6d27ab66c94, committed 2015-08-07
- Comitter:
- rgrover1
- Date:
- Fri Aug 07 15:55:21 2015 +0100
- Parent:
- 771:26b809199308
- Child:
- 773:099675a85d7c
- Commit message:
- Synchronized with git rev eb97fcf0
Author: Rohit Grover
minor change to avoid a compiler warning about un-used variable.
Changed in this revision
| ble/Gap.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/ble/Gap.h Fri Aug 07 15:55:21 2015 +0100
+++ b/ble/Gap.h Fri Aug 07 15:55:21 2015 +0100
@@ -410,6 +410,7 @@
protected:
/* Override the following in the underlying adaptation layer to provide the functionality of scanning. */
virtual ble_error_t startRadioScan(const GapScanningParams &scanningParams) {
+ (void)scanningParams;
return BLE_ERROR_NOT_IMPLEMENTED; /* Requesting action from porter(s): override this API if this capability is supported. */
}
