#[repr(C)]pub struct bt_le_per_adv_sync_subevent_params {
pub properties: u16,
pub num_subevents: u8,
pub subevents: *mut u8,
}
Expand description
@brief Parameters for synchronizing with specific periodic advertising subevents.
@details This struct contains the parameters used to synchronize with a subset of subevents in periodic advertising. It includes the periodic advertising properties, the number of subevents to sync to, and the list of subevents that the controller should synchronize with.
@note Used in @ref bt_le_per_adv_sync_subevent function to control synchronization.
Fields§
§properties: u16
@brief Periodic Advertising Properties.
Bit 6 is include TxPower, all others RFU.
num_subevents: u8
Number of subevents to sync to
subevents: *mut u8
@brief The subevent(s) to synchronize with
The array must have @ref num_subevents elements.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for bt_le_per_adv_sync_subevent_params
impl RefUnwindSafe for bt_le_per_adv_sync_subevent_params
impl !Send for bt_le_per_adv_sync_subevent_params
impl !Sync for bt_le_per_adv_sync_subevent_params
impl Unpin for bt_le_per_adv_sync_subevent_params
impl UnwindSafe for bt_le_per_adv_sync_subevent_params
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more