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: ble/Gap.h
- Revision:
- 1108:ce7f6dbab398
- Parent:
- 1107:93b0b9304c53
- Child:
- 1109:09e9c8c2a5bb
--- a/ble/Gap.h Mon Jan 11 08:51:57 2016 +0000 +++ b/ble/Gap.h Mon Jan 11 08:51:57 2016 +0000 @@ -24,6 +24,7 @@ #include "GapEvents.h" #include "CallChainOfFunctionPointersWithContext.h" #include "FunctionPointerWithContext.h" +#include "deprecate.h" /* Forward declarations for classes that will only be used for pointers or references in the following. */ class GapAdvertisingParams; @@ -51,13 +52,13 @@ /** * Address-type for BLEProtocol addresses. - * @note: deprecated. Use BLEProtocol::AddressType_t instead. + * \deprecated: Use BLEProtocol::AddressType_t instead. * * DEPRECATION ALERT: The following constants have been left in their * deprecated state to transparenly support existing applications which may * have used Gap::ADDR_TYPE_*. */ - enum AddressTypeOverload_t { + enum DeprecatedAddressType_t { ADDR_TYPE_PUBLIC = BLEProtocol::AddressType::PUBLIC, ADDR_TYPE_RANDOM_STATIC = BLEProtocol::AddressType::RANDOM_STATIC, ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE = BLEProtocol::AddressType::RANDOM_PRIVATE_RESOLVABLE, @@ -285,9 +286,10 @@ * to maintain backward compatibility for change from Gap::AddressType_t to BLEProtocol::AddressType_t */ ble_error_t connect(const BLEProtocol::Address_t peerAddr, - AddressTypeOverload_t peerAddrType, + DeprecatedAddressType_t peerAddrType, const ConnectionParams_t *connectionParams, - const GapScanningParams *scanParams) { + const GapScanningParams *scanParams) + __deprecated_message("Gap::DeprecatedAddressType_t is deprecated, use BLEProtocol::AddressType_t instead") { return connect(peerAddr, (BLEProtocol::AddressType_t) peerAddrType, connectionParams, scanParams); }