Skip to content

Commit 1f39a23

Browse files
committed
Bluetooth: Host: Clarify use of identity in docs
Clarifies the use of identity in `bluetooth.h` by specifying whether the documentation refers to the identity address, i. e. the actual address `bt_addr_le_t`, or the identity handle, i. e. an index corresponding to a specific identity address. Signed-off-by: Håvard Reierstad <haavard.reierstad@nordicsemi.no>
1 parent 42c3a78 commit 1f39a23

File tree

2 files changed

+67
-71
lines changed

2 files changed

+67
-71
lines changed

include/zephyr/bluetooth/bluetooth.h

+65-69
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,9 @@ extern "C" {
6161
*/
6262

6363
/**
64-
* Convenience macro for specifying the default identity. This helps
65-
* make the code more readable, especially when only one identity is
66-
* supported.
64+
* Identity handle referring to the first identity address. This is a convenience macro for
65+
* specifying the default identity address. This helps make the code more readable, especially when
66+
* only one identity address is supported.
6767
*/
6868
#define BT_ID_DEFAULT 0
6969

@@ -312,7 +312,7 @@ int bt_enable(bt_ready_cb_t cb);
312312
*
313313
* Disable Bluetooth. Can't be called before bt_enable has completed.
314314
*
315-
* This API will clear all configured identities and keys that are not persistently
315+
* This API will clear all configured identity addresses and keys that are not persistently
316316
* stored with @kconfig{CONFIG_BT_SETTINGS}. These can be restored
317317
* with settings_load() before reenabling the stack.
318318
*
@@ -392,36 +392,35 @@ uint16_t bt_get_appearance(void);
392392
int bt_set_appearance(uint16_t new_appearance);
393393

394394
/**
395-
* @brief Get the currently configured identities.
395+
* @brief Get the currently configured identity addresses.
396396
*
397397
* Returns an array of the currently configured identity addresses. To
398-
* make sure all available identities can be retrieved, the number of
398+
* make sure all available identity addresses can be retrieved, the number of
399399
* elements in the @a addrs array should be CONFIG_BT_ID_MAX. The identity
400-
* identifier that some APIs expect (such as advertising parameters) is
401-
* simply the index of the identity in the @a addrs array.
400+
* handle that some APIs expect (such as @ref bt_le_adv_param) is
401+
* simply the index of the identity address in the @a addrs array.
402402
*
403-
* If @a addrs is passed as NULL, then returned @a count contains the
404-
* count of all available identities that can be retrieved with a
403+
* If @a addrs is passed as NULL, then the returned @a count contains the
404+
* count of all available identity addresses that can be retrieved with a
405405
* subsequent call to this function with non-NULL @a addrs parameter.
406406
*
407-
* @note Deleted identities may show up as @ref BT_ADDR_LE_ANY in the returned
408-
* array.
407+
* @note Deleted identity addresses may show up as @ref BT_ADDR_LE_ANY in the returned array.
409408
*
410-
* @param addrs Array where to store the configured identities.
411-
* @param count Should be initialized to the array size. Once the function
412-
* returns it will contain the number of returned identities.
409+
* @param addrs Array where to store the configured identity addresses.
410+
* @param count Should be initialized to the array size. Once the function returns
411+
* it will contain the number of returned identity addresses.
413412
*/
414413
void bt_id_get(bt_addr_le_t *addrs, size_t *count);
415414

416415
/**
417-
* @brief Create a new identity.
416+
* @brief Create a new identity address.
418417
*
419-
* Create a new identity using the given address and IRK. This function can be
420-
* called before calling bt_enable(). However, the new identity will only be
418+
* Create a new identity address using the given address and IRK. This function can be
419+
* called before calling bt_enable(). However, the new identity address will only be
421420
* stored persistently in flash when this API is used after bt_enable(). The
422421
* reason is that the persistent settings are loaded after bt_enable() and would
423422
* therefore cause potential conflicts with the stack blindly overwriting what's
424-
* stored in flash. The identity will also not be written to flash in case a
423+
* stored in flash. The identity address will also not be written to flash in case a
425424
* pre-defined address is provided, since in such a situation the app clearly
426425
* has some place it got the address from and will be able to repeat the
427426
* procedure on every power cycle, i.e. it would be redundant to also store the
@@ -430,11 +429,11 @@ void bt_id_get(bt_addr_le_t *addrs, size_t *count);
430429
* Generating random static address or random IRK is not supported when calling
431430
* this function before bt_enable().
432431
*
433-
* If the application wants to have the stack randomly generate identities
432+
* If the application wants to have the stack randomly generate identity addresses
434433
* and store them in flash for later recovery, the way to do it would be
435434
* to first initialize the stack (using bt_enable), then call settings_load(),
436-
* and after that check with bt_id_get() how many identities were recovered.
437-
* If an insufficient amount of identities were recovered the app may then
435+
* and after that check with bt_id_get() how many identity addresses were recovered.
436+
* If an insufficient amount of identity addresses were recovered the app may then
438437
* call bt_id_create() to create new ones.
439438
*
440439
* If supported by the HCI driver (indicated by setting
@@ -443,71 +442,66 @@ void bt_id_get(bt_addr_le_t *addrs, size_t *count);
443442
* before calling bt_enable(). Subsequent calls always add/generate random
444443
* static addresses.
445444
*
446-
* @param addr Address to use for the new identity. If NULL or initialized
447-
* to BT_ADDR_LE_ANY the stack will generate a new random
448-
* static address for the identity and copy it to the given
449-
* parameter upon return from this function (in case the
450-
* parameter was non-NULL).
445+
* @param addr Address to use for the new identity address. If NULL or initialized
446+
* to BT_ADDR_LE_ANY the stack will generate a new random static address
447+
* for the identity address and copy it to the given parameter upon return
448+
* from this function (in case the parameter was non-NULL).
451449
* @param irk Identity Resolving Key (16 bytes) to be used with this
452-
* identity. If set to all zeroes or NULL, the stack will
453-
* generate a random IRK for the identity and copy it back
450+
* identity address. If set to all zeroes or NULL, the stack will
451+
* generate a random IRK for the identity address and copy it back
454452
* to the parameter upon return from this function (in case
455453
* the parameter was non-NULL). If privacy
456454
* @kconfig{CONFIG_BT_PRIVACY} is not enabled this parameter must
457455
* be NULL.
458456
*
459-
* @return Identity identifier (>= 0) in case of success, or a negative
460-
* error code on failure.
457+
* @return Identity handle (>= 0) in case of success, or a negative error code on failure.
461458
*/
462459
int bt_id_create(bt_addr_le_t *addr, uint8_t *irk);
463460

464461
/**
465-
* @brief Reset/reclaim an identity for reuse.
462+
* @brief Reset/reclaim an identity address for reuse.
466463
*
467464
* The semantics of the @a addr and @a irk parameters of this function
468465
* are the same as with bt_id_create(). The difference is the first
469-
* @a id parameter that needs to be an existing identity (if it doesn't
470-
* exist this function will return an error). When given an existing
471-
* identity this function will disconnect any connections created using it,
472-
* remove any pairing keys or other data associated with it, and then create
473-
* a new identity in the same slot, based on the @a addr and @a irk
474-
* parameters.
475-
*
476-
* @note the default identity (BT_ID_DEFAULT) cannot be reset, i.e. this
466+
* @a id parameter that needs to be an existing identity handle (if it doesn't
467+
* exist this function will return an error). When given an existing identity handle
468+
* this function will disconnect any connections (to the corresponding identity address)
469+
* created using it, remove any pairing keys or other data associated with it, and then
470+
* create a new identity address in the same slot, based on the @a addr and @a irk parameters.
471+
*
472+
* @note The default identity address (corresponding to BT_ID_DEFAULT) cannot be reset, and this
477473
* API will return an error if asked to do that.
478474
*
479-
* @param id Existing identity identifier.
480-
* @param addr Address to use for the new identity. If NULL or initialized
481-
* to BT_ADDR_LE_ANY the stack will generate a new static
482-
* random address for the identity and copy it to the given
483-
* parameter upon return from this function (in case the
484-
* parameter was non-NULL).
475+
* @param id Existing identity handle.
476+
* @param addr Address to use for the new identity address. If NULL or initialized
477+
* to BT_ADDR_LE_ANY the stack will generate a new static random
478+
* address for the identity address and copy it to the given
479+
* parameter upon return from this function.
485480
* @param irk Identity Resolving Key (16 bytes) to be used with this
486-
* identity. If set to all zeroes or NULL, the stack will
487-
* generate a random IRK for the identity and copy it back
481+
* identity address. If set to all zeroes or NULL, the stack will
482+
* generate a random IRK for the identity address and copy it back
488483
* to the parameter upon return from this function (in case
489484
* the parameter was non-NULL). If privacy
490485
* @kconfig{CONFIG_BT_PRIVACY} is not enabled this parameter must
491486
* be NULL.
492487
*
493-
* @return Identity identifier (>= 0) in case of success, or a negative
494-
* error code on failure.
488+
* @return Identity handle (>= 0) in case of success, or a negative error code on failure.
495489
*/
496490
int bt_id_reset(uint8_t id, bt_addr_le_t *addr, uint8_t *irk);
497491

498492
/**
499-
* @brief Delete an identity.
493+
* @brief Delete an identity address.
500494
*
501-
* When given a valid identity this function will disconnect any connections
502-
* created using it, remove any pairing keys or other data associated with
503-
* it, and then flag is as deleted, so that it can not be used for any
504-
* operations. To take back into use the slot the identity was occupying the
505-
* bt_id_reset() API needs to be used.
495+
* When given a valid identity handle this function will disconnect any connections
496+
* (to the corresponding identity address) created using it, remove any pairing keys
497+
* or other data associated with it, and then flag is as deleted, so that it can not
498+
* be used for any operations. To take back into use the slot the identity address was
499+
* occupying, the bt_id_reset() API needs to be used.
506500
*
507-
* @note the default identity (BT_ID_DEFAULT) cannot be deleted, i.e. this
501+
* @note The default identity address (corresponding to BT_ID_DEFAULT) cannot be deleted, and this
508502
* API will return an error if asked to do that.
509503
*
510-
* @param id Existing identity identifier.
504+
* @param id Existing identity handle.
511505
*
512506
* @return 0 in case of success, or a negative error code on failure.
513507
*/
@@ -904,7 +898,7 @@ enum advertising_options {
904898
BT_LE_ADV_OPT_CODED = BIT(12),
905899

906900
/**
907-
* @brief Advertise without a device address (identity or RPA).
901+
* @brief Advertise without a device address (identity address or RPA).
908902
*
909903
* @note Requires @ref BT_LE_ADV_OPT_EXT_ADV bit (see @ref advertising_options field) to be
910904
* set as @ref bt_le_adv_param.options.
@@ -993,7 +987,9 @@ enum advertising_options {
993987
/** LE Advertising Parameters. */
994988
struct bt_le_adv_param {
995989
/**
996-
* @brief Local identity.
990+
* @brief Local identity handle.
991+
*
992+
* The index of the identity address in the local Bluetooth controller.
997993
*
998994
* @note When extended advertising @kconfig{CONFIG_BT_EXT_ADV} is not
999995
* enabled or not supported by the controller it is not possible
@@ -1686,7 +1682,7 @@ uint8_t bt_le_ext_adv_get_index(struct bt_le_ext_adv *adv);
16861682

16871683
/** @brief Advertising set info structure. */
16881684
struct bt_le_ext_adv_info {
1689-
/* Local identity */
1685+
/** Local identity handle. */
16901686
uint8_t id;
16911687

16921688
/** Currently selected Transmit Power (dBM). */
@@ -2720,7 +2716,7 @@ BUILD_ASSERT(BT_GAP_SCAN_FAST_WINDOW == BT_GAP_SCAN_FAST_INTERVAL_MIN,
27202716
*
27212717
* @note The LE scanner by default does not use the Identity Address of the
27222718
* local device when @kconfig{CONFIG_BT_PRIVACY} is disabled. This is to
2723-
* prevent the active scanner from disclosing the identity information
2719+
* prevent the active scanner from disclosing the identity address information
27242720
* when requesting additional information from advertisers.
27252721
* In order to enable directed advertiser reports then
27262722
* @kconfig{CONFIG_BT_SCAN_WITH_IDENTITY} must be enabled.
@@ -2909,12 +2905,12 @@ struct bt_le_oob {
29092905
* - Creating a connection in progress, wait for the connected callback.
29102906
* In addition when extended advertising @kconfig{CONFIG_BT_EXT_ADV} is
29112907
* not enabled or not supported by the controller:
2912-
* - Advertiser is enabled using a Random Static Identity Address for a
2913-
* different local identity.
2914-
* - The local identity conflicts with the local identity used by other
2908+
* - Advertiser is enabled using a Random Static Identity Address as a
2909+
* different local identity address.
2910+
* - The local identity address conflicts with the local identity address used by other
29152911
* roles.
29162912
*
2917-
* @param[in] id Local identity, in most cases BT_ID_DEFAULT.
2913+
* @param[in] id Local identity handle, in most cases BT_ID_DEFAULT.
29182914
* @param[out] oob LE OOB information
29192915
*
29202916
* @return Zero on success or error code otherwise, positive in case of
@@ -2952,7 +2948,7 @@ int bt_le_ext_adv_oob_get_local(struct bt_le_ext_adv *adv,
29522948
/**
29532949
* @brief Clear pairing information.
29542950
*
2955-
* @param id Local identity (mostly just BT_ID_DEFAULT).
2951+
* @param id Local identity handle (mostly just BT_ID_DEFAULT).
29562952
* @param addr Remote address, NULL or BT_ADDR_LE_ANY to clear all remote
29572953
* devices.
29582954
*
@@ -2969,7 +2965,7 @@ struct bt_bond_info {
29692965
/**
29702966
* @brief Iterate through all existing bonds.
29712967
*
2972-
* @param id Local identity (mostly just BT_ID_DEFAULT).
2968+
* @param id Local identity handle (mostly just BT_ID_DEFAULT).
29732969
* @param func Function to call for each bond.
29742970
* @param user_data Data to pass to the callback function.
29752971
*/
@@ -3093,7 +3089,7 @@ int bt_le_per_adv_set_response_data(struct bt_le_per_adv_sync *per_adv_sync,
30933089
* @details Valid Bluetooth LE identity addresses are either public address or random static
30943090
* address.
30953091
*
3096-
* @param id Local identity (typically @ref BT_ID_DEFAULT).
3092+
* @param id Local identity handle (typically @ref BT_ID_DEFAULT).
30973093
* @param addr Bluetooth LE device address.
30983094
*
30993095
* @return true if @p addr is bonded with local @p id

subsys/bluetooth/host/shell/bt.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -1500,7 +1500,7 @@ static int cmd_id_reset(const struct shell *sh, size_t argc, char *argv[])
15001500
int err;
15011501

15021502
if (argc < 2) {
1503-
shell_error(sh, "Identity identifier not specified");
1503+
shell_error(sh, "Identity handle not specified");
15041504
return -ENOEXEC;
15051505
}
15061506

@@ -1534,7 +1534,7 @@ static int cmd_id_delete(const struct shell *sh, size_t argc, char *argv[])
15341534
int err;
15351535

15361536
if (argc < 2) {
1537-
shell_error(sh, "Identity identifier not specified");
1537+
shell_error(sh, "Identity handle not specified");
15381538
return -ENOEXEC;
15391539
}
15401540

0 commit comments

Comments
 (0)