pub enum Cca {
CarrierSense,
EnergyDetection {
ed_threshold: u8,
},
}
Expand description
Clear Channel Assessment method
Variants§
CarrierSense
Carrier sense
EnergyDetection
Energy Detection / Energy Above Threshold
Fields
§
ed_threshold: u8
Energy measurements above this value mean that the channel is assumed to be busy. Note the measurement range is 0..0xFF - where 0 means that the received power was less than 10 dB above the selected receiver sensitivity. This value is not given in dBm, but can be converted. See the nrf52840 Product Specification Section 6.20.12.4 for details.
Auto Trait Implementations§
impl Freeze for Cca
impl RefUnwindSafe for Cca
impl Send for Cca
impl Sync for Cca
impl Unpin for Cca
impl UnwindSafe for Cca
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