BLE
Fork of BLE_API by
Diff: ble/Gap.h
- Revision:
- 1087:75d4e8ce277d
- Parent:
- 1086:ab823cb9783f
- Child:
- 1088:4c6e11878033
diff -r ab823cb9783f -r 75d4e8ce277d ble/Gap.h --- a/ble/Gap.h Mon Jan 11 08:51:47 2016 +0000 +++ b/ble/Gap.h Mon Jan 11 08:51:48 2016 +0000 @@ -39,15 +39,23 @@ /** * Address-type for BLEProtocol addresses. * - * @note: deprecated. Use BLEProtocol::AddressType_t instead. This declaration will soon be changed to: - * typedef BLEProtocol::AddressType_t AddressType_t; - * It has been left in this current state to transparenly support existing applications which may have used Gap::ADDR_TYPE_*. + * @note: deprecated. Use BLEProtocol::AddressType_t instead. */ - enum AddressType_t { - ADDR_TYPE_PUBLIC = BLEProtocol::AddressType::PUBLIC, - ADDR_TYPE_RANDOM_STATIC, - ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE, - ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE + typedef BLEProtocol::AddressType_t AddressType_t; + + /** + * Address-type for BLEProtocol addresses. + * @note: 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 { + ADDR_TYPE_PUBLIC = BLEProtocol::AddressType::PUBLIC, + ADDR_TYPE_RANDOM_STATIC = BLEProtocol::AddressType::RANDOM_STATIC, + ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE = BLEProtocol::AddressType::RANDOM_PRIVATE_RESOLVABLE, + ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE = BLEProtocol::AddressType::RANDOM_PRIVATE_NON_RESOLVABLE }; /**