pub enum Cca {
    CarrierSense,
    EnergyDetection {
        ed_threshold: u8,
    },
}
Expand description

Clear Channel Assessment method

Variants

CarrierSense

Carrier sense

EnergyDetection

Fields

ed_threshold: u8

Energy measurements above this value mean that the channel is assumed to be busy. Note the 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.

Energy Detection / Energy Above Threshold

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Casts the value.

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Casts the value.

Casts the value.

Casts the value.

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Performs the conversion.

Performs the conversion.

Casts the value.

OverflowingCasts the value.

Should always be Self

Casts the value.

Casts the value.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Casts the value.

UnwrappedCasts the value.

Casts the value.

WrappingCasts the value.