#[repr(C)]pub struct nrf_modem_dect_phy_config_params {
pub band_group_index: u8,
pub harq_rx_process_count: u8,
pub harq_rx_expiry_time_us: u32,
}Expand description
DECT PHY configuration parameters.
Fields§
§band_group_index: u8Band group index.
Allowed values: 0 or 1. Value 0 refers to RF frequencies operating near 2GHz and value 1 to RF frequencies near 1 GHz.
harq_rx_process_count: u8Number of HARQ processes.
The HARQ reception buffer is divided equally between processes. Supported values: 1, 2, 4, 8.
harq_rx_expiry_time_us: u32HARQ RX buffer expiry time, in microseconds.
A HARQ process soft buffer allocation is released when there have been no receptions to that buffer within the buffer’s expiry time.
Maximum supported value: 5000000.
Trait Implementations§
Source§impl Clone for nrf_modem_dect_phy_config_params
impl Clone for nrf_modem_dect_phy_config_params
Source§fn clone(&self) -> nrf_modem_dect_phy_config_params
fn clone(&self) -> nrf_modem_dect_phy_config_params
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for nrf_modem_dect_phy_config_params
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_config_params
impl RefUnwindSafe for nrf_modem_dect_phy_config_params
impl Send for nrf_modem_dect_phy_config_params
impl Sync for nrf_modem_dect_phy_config_params
impl Unpin for nrf_modem_dect_phy_config_params
impl UnwindSafe for nrf_modem_dect_phy_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