#[repr(C)]pub struct nrf_modem_dect_phy_link_config_params {
pub primary_link_id: nrf_modem_dect_phy_link_id,
pub secondary_link_count: u8,
pub secondary_link_ids: __IncompleteArrayField<nrf_modem_dect_phy_link_id>,
}Expand description
Link configuration parameters.
Fields§
§primary_link_id: nrf_modem_dect_phy_link_idPrimary link.
The modem tracks the frequency of the primary link for Automatic Frequency Control purposes. This frequency is propagated down the tree, that is, the Radio Device uses this frequency for all its radio operations except those directed to secondary links.
secondary_link_count: u8Number of secondary links.
secondary_link_ids: __IncompleteArrayField<nrf_modem_dect_phy_link_id>Secondary links.
The modem tracks the frequency of secondary links for Automatic Frequency Control purposes. When communicating with a secondary link the modem compensates the frequency difference between the secondary link and the primary link.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_link_config_params
impl RefUnwindSafe for nrf_modem_dect_phy_link_config_params
impl Send for nrf_modem_dect_phy_link_config_params
impl Sync for nrf_modem_dect_phy_link_config_params
impl Unpin for nrf_modem_dect_phy_link_config_params
impl UnsafeUnpin for nrf_modem_dect_phy_link_config_params
impl UnwindSafe for nrf_modem_dect_phy_link_config_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