Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bluetooth: Host: Improve documentation of bt_le_ext_adv_start_param #87358

Merged
merged 1 commit into from
Mar 21, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 45 additions & 17 deletions include/zephyr/bluetooth/bluetooth.h
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,12 @@ struct bt_df_per_adv_sync_iq_samples_report;
* @note Used in @ref bt_le_ext_adv_cb.
*/
struct bt_le_ext_adv_sent_info {
/** The number of advertising events completed. */
/**
* If the advertising set was started with a non-zero
* @ref bt_le_ext_adv_start_param.num_events, this field
* contains the number of times this advertising set has
* been sent since it was enabled.
*/
uint8_t num_sent;
};

Expand Down Expand Up @@ -193,12 +198,11 @@ struct bt_le_per_adv_response_info {
*/
struct bt_le_ext_adv_cb {
/**
* @brief The advertising set has finished sending adv data.
* @brief The advertising set was disabled after reaching limit
*
* This callback notifies the application that the advertising set has
* finished sending advertising data.
* The advertising set can either have been stopped by a timeout or
* because the specified number of advertising events has been reached.
Comment on lines -200 to -201
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I read this as the only two reasons for this callback. But, I'm not sure after looking at the code. It looks like it might also be called when the advertising set spawns a connection. @jhedberg Do you know?

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Not off the top of my head, unfortunately. Sounds like a reasonable assumption, though.

* This callback is invoked when the limit set in
* @ref bt_le_ext_adv_start_param.timeout or
* @ref bt_le_ext_adv_start_param.num_events is reached.
*
* @param adv The advertising set object.
* @param info Information about the sent event.
Expand Down Expand Up @@ -1554,24 +1558,48 @@ int bt_le_ext_adv_create(const struct bt_le_adv_param *param,
*/
struct bt_le_ext_adv_start_param {
/**
* @brief Advertiser timeout (N * 10 ms).
* @brief Maximum advertising set duration (N * 10 ms)
*
* The advertising set can be automatically disabled after a
* certain amount of time has passed since it first appeared on
* air.
*
* Set to zero for no limit. Set in units of 10 ms.
*
* Application will be notified by the advertiser sent callback.
* Set to zero for no timeout.
* When the advertising set is automatically disabled because of
* this limit, @ref bt_le_ext_adv_cb.sent will be called.
*
* When using high duty cycle directed connectable advertising then
* this parameters must be set to a non-zero value less than or equal
* to the maximum of @ref BT_GAP_ADV_HIGH_DUTY_CYCLE_MAX_TIMEOUT.
* When using high duty cycle directed connectable advertising
* then this parameters must be set to a non-zero value less
* than or equal to the maximum of
* @ref BT_GAP_ADV_HIGH_DUTY_CYCLE_MAX_TIMEOUT.
*
* If privacy @kconfig{CONFIG_BT_PRIVACY} is enabled then the timeout
* must be less than @kconfig{CONFIG_BT_RPA_TIMEOUT}.
* If privacy @kconfig{CONFIG_BT_PRIVACY} is enabled then the
* timeout must be less than @kconfig{CONFIG_BT_RPA_TIMEOUT}.
*
* For background information, see parameter "Duration" in
* Bluetooth Core Specification Version 6.0 Vol. 4 Part E,
* Section 7.8.56.
*/
uint16_t timeout;

/**
* @brief Number of advertising events.
* @brief Maximum number of extended advertising events to be
* sent
*
* The advertiser can be automatically disabled once the whole
* advertisement (i.e. extended advertising event) has been sent
* a certain number of times. The number of advertising PDUs
* sent may be higher and is not relevant.
*
* Set to zero for no limit.
*
* When the advertising set is automatically disabled because of
* this limit, @ref bt_le_ext_adv_cb.sent will be called.
*
* Application will be notified by the advertisement sent callback, once num_events are
* reached. Set to zero for no limit.
* For background information, see parameter
* "Max_Extended_Advertising_Events" in Bluetooth Core
* Specification Version 6.0 Vol. 4 Part E, Section 7.8.56.
*/
uint8_t num_events;
};
Expand Down
Loading