#[repr(C)]pub struct nrf_modem_dect_phy_pcc_event {
pub stf_start_time: u64,
pub handle: u32,
pub header_status: nrf_modem_dect_phy_hdr_status,
pub phy_type: u8,
pub hdr: nrf_modem_dect_phy_hdr,
pub rssi_2: i16,
pub snr: i16,
pub transaction_id: u16,
}Expand description
PCC reception event.
Fields§
§stf_start_time: u64Synchronization Training Field start time.
Start time of the STF of this reception in modem time.
handle: u32Handle for the operation.
header_status: nrf_modem_dect_phy_hdr_statusValidity of the physical header.
phy_type: u8Physical layer control field type.
Valid values are 0 and 1 corresponding types 1 and 2, respectively.
See 6.2.1 in @ref DECT-SPEC “DECT-2020 NR Part 4”.
hdr: nrf_modem_dect_phy_hdrPHY header.
rssi_2: i16Received signal strength indicator (RSSI-2).
Values are in dBm with 0.5 dBm resolution (Q14.1).
See 8.3 in @ref DECT-SPEC “DECT-2020 NR Part 2”.
snr: i16Received signal to noise indicator (SNR).
Values are dB values with 0.25 dB resolution (Q13.2).
See 8.4 in @ref DECT-SPEC “DECT-2020 NR Part 2”.
transaction_id: u16Transaction ID.
Used to map PCC data with corresponding PDC data.
Trait Implementations§
Source§impl Clone for nrf_modem_dect_phy_pcc_event
impl Clone for nrf_modem_dect_phy_pcc_event
Source§fn clone(&self) -> nrf_modem_dect_phy_pcc_event
fn clone(&self) -> nrf_modem_dect_phy_pcc_event
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_pcc_event
Auto Trait Implementations§
impl Freeze for nrf_modem_dect_phy_pcc_event
impl RefUnwindSafe for nrf_modem_dect_phy_pcc_event
impl Send for nrf_modem_dect_phy_pcc_event
impl Sync for nrf_modem_dect_phy_pcc_event
impl Unpin for nrf_modem_dect_phy_pcc_event
impl UnsafeUnpin for nrf_modem_dect_phy_pcc_event
impl UnwindSafe for nrf_modem_dect_phy_pcc_event
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