pub struct Rpd(/* private fields */);Expand description
§RPD register
Received power detector.
Address = 0x09
§Fields
§rpd | bit 0
Triggers at received power levels above -64 dBm that are present in the RF channel you receive on. If the received power is less than -64 dBm, RDP = 0.
§Example
use nrf24l01_commands::registers;
let reg = registers::Rpd::from_bits(1);
assert!(reg.rpd());Implementations§
Trait Implementations§
impl Copy for Rpd
Auto Trait Implementations§
impl Freeze for Rpd
impl RefUnwindSafe for Rpd
impl Send for Rpd
impl Sync for Rpd
impl Unpin for Rpd
impl UnwindSafe for Rpd
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