mirror of https://github.com/ARMmbed/mbed-os.git
reorder enum to add new values at the end
parent
9a9167602d
commit
f56f57bf15
|
|
@ -59,24 +59,6 @@ namespace BLEProtocol {
|
|||
*/
|
||||
PUBLIC = 0,
|
||||
|
||||
/**
|
||||
* Random address.
|
||||
*
|
||||
* Use Gap::getRandomAddressType to retrieve the type of the random
|
||||
* address.
|
||||
*/
|
||||
RANDOM,
|
||||
|
||||
/**
|
||||
* A Public address used as a device identity address.
|
||||
*/
|
||||
PUBLIC_IDENTITY,
|
||||
|
||||
/**
|
||||
* A Random static address used as a device identity address.
|
||||
*/
|
||||
RANDOM_STATIC_IDENTITY,
|
||||
|
||||
/**
|
||||
* Random static device address.
|
||||
*
|
||||
|
|
@ -105,7 +87,25 @@ namespace BLEProtocol {
|
|||
* on RANDOM instead. Use Gap::getRandomAddressType to retrieve the
|
||||
* type of the random address.
|
||||
*/
|
||||
RANDOM_PRIVATE_NON_RESOLVABLE
|
||||
RANDOM_PRIVATE_NON_RESOLVABLE,
|
||||
|
||||
/**
|
||||
* Random address.
|
||||
*
|
||||
* Use Gap::getRandomAddressType to retrieve the type of the random
|
||||
* address.
|
||||
*/
|
||||
RANDOM,
|
||||
|
||||
/**
|
||||
* A Public address used as a device identity address.
|
||||
*/
|
||||
PUBLIC_IDENTITY,
|
||||
|
||||
/**
|
||||
* A Random static address used as a device identity address.
|
||||
*/
|
||||
RANDOM_STATIC_IDENTITY
|
||||
};
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue