pub enum TransmissionError {
Failure(bool, bool, bool, bool),
RepetitionOverflow,
IncompatibleRepeatMode,
}Expand description
Errors that can occur during a transmission attempt
Variants§
Failure(bool, bool, bool, bool)
Generic Transmission Error
RepetitionOverflow
The maximum number of transmissions (=(2^10)-1) was exceeded
IncompatibleRepeatMode
The RepeatNtimes and Forever modesl are only feasible if the
sequence fits into the RAM in one go. If the sequence has > 48
elements, the RepeatNtimes and Forever modes cannot be used.