Lightly modified version of the BLE stack, that doesn't bring up a DFUService by default... as we have our own.
Fork of BLE_API by
Revision 402:0e714ad205b4, committed 2015-05-13
- Comitter:
- rgrover1
- Date:
- Wed May 13 08:51:10 2015 +0100
- Parent:
- 401:2f90d20cfced
- Commit message:
- Synchronized with git rev ca9f8a9c
Author: Rohit Grover
add some comments to highlight deprecated type aliases.
Changed in this revision
public/Gap.h | Show annotated file Show diff for this revision Revisions of this file |
--- a/public/Gap.h Wed May 13 08:51:10 2015 +0100 +++ b/public/Gap.h Wed May 13 08:51:10 2015 +0100 @@ -34,11 +34,11 @@ ADDR_TYPE_RANDOM_PRIVATE_RESOLVABLE, ADDR_TYPE_RANDOM_PRIVATE_NON_RESOLVABLE }; - typedef enum AddressType_t addr_type_t; /* @Note: decprecated. */ + typedef enum AddressType_t addr_type_t; /* @Note: deprecated. Use AddressType_t instead. */ static const unsigned ADDR_LEN = 6; typedef uint8_t Address_t[ADDR_LEN]; /* 48-bit address, LSB format. */ - typedef Address_t address_t; /* @Note: deprecated. */ + typedef Address_t address_t; /* @Note: deprecated. Use Address_t instead. */ enum AdvertisementType_t { ADV_IND = 0x00, /**< Connectable undirected. */