BLE_API_Tiny_BLE
Fork of BLE_API by
Revision 375:9cb0b006227e, committed 2015-05-13
- Comitter:
- rgrover1
- Date:
- Wed May 13 08:51:06 2015 +0100
- Parent:
- 374:8d1f5c5252c4
- Child:
- 376:47ff130c1d74
- Commit message:
- Synchronized with git rev ef977902
Author: Rohit Grover
simplifying declarations for some enumerations within Gap.
Changed in this revision
public/Gap.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/public/Gap.h Mon May 11 07:59:00 2015 +0100 +++ b/public/Gap.h Wed May 13 08:51:06 2015 +0100 @@ -26,15 +26,17 @@ class Gap { public: - typedef enum addr_type_e { + enum AddressType_t { ADDR_TYPE_PUBLIC = 0, ADDR_TYPE_RANDOM_STATIC, ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE, ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE - } addr_type_t; + }; + typedef enum AddressType_t addr_type_t; /* @Note: decprecated. */ static const unsigned ADDR_LEN = 6; - typedef uint8_t address_t[ADDR_LEN]; /* 48-bit address, LSB format. */ + typedef uint8_t Address_t[ADDR_LEN]; /* 48-bit address, LSB format. */ + typedef Address_t address_t; /* @Note: deprecated. */ /** * Enumeration for disconnection reasons. The values for these reasons are