BLE: Add ANONYMOUS in peer_advertising_type_t

pull/8738/head
Vincent Coubard 2018-11-08 11:09:20 +00:00
parent e58928def1
commit 44d8545dc8
1 changed files with 6 additions and 1 deletions

View File

@ -746,7 +746,12 @@ struct peer_address_type_t :SafeEnum<peer_address_type_t, uint8_t> {
/**
* A Random static address used as a device identity address.
*/
RANDOM_STATIC_IDENTITY
RANDOM_STATIC_IDENTITY,
/**
* No address provided (anonymous advertisement)
*/
ANONYMOUS = 0xFF
};
/**