Struct radio_sx128x::device::flrc::FlrcConfig[][src]

pub struct FlrcConfig {
    pub preamble_length: PreambleLength,
    pub sync_word_length: FlrcSyncWordLength,
    pub sync_word_match: SyncWordRxMatch,
    pub header_type: GfskFlrcPacketLength,
    pub payload_length: u8,
    pub crc_mode: GfskFlrcCrcModes,
    pub whitening: WhiteningModes,
    pub patch_syncword: bool,
}

FLRC packet configuration structure

Fields

preamble_length: PreambleLengthsync_word_length: FlrcSyncWordLengthsync_word_match: SyncWordRxMatchheader_type: GfskFlrcPacketLengthpayload_length: u8crc_mode: GfskFlrcCrcModeswhitening: WhiteningModespatch_syncword: bool

Patch to resolver errata 16.4, increased PER in FLRC packets with syncword This sets the LrSyncWordTolerance to maximum

Trait Implementations

impl Clone for FlrcConfig[src]

impl Debug for FlrcConfig[src]

impl Default for FlrcConfig[src]

impl<'de> Deserialize<'de> for FlrcConfig[src]

impl PartialEq<FlrcConfig> for FlrcConfig[src]

impl Serialize for FlrcConfig[src]

impl StructuralPartialEq for FlrcConfig[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.