Enum capsules::ieee802154::framer::RxState [] [src]

enum RxState {
    Idle,
    ReadyToDecrypt(FrameInfo, &'static mut [u8]),
    Decrypting(FrameInfo),
    ReadyToYield(FrameInfo, &'static mut [u8]),
    ReadyToReturn(&'static mut [u8]),
}

Variants

There is no frame that has been received.

There is a secured frame that needs to be decrypted.

A secured frame is currently being decrypted by the decryption facility.

There is an unsecured frame that needs to be re-parsed and exposed to the client.

The buffer containing the frame needs to be returned to the radio.

Trait Implementations

impl Eq for RxState
[src]

[src]

impl PartialEq for RxState
[src]

[src]

This method tests for self and other values to be equal, and is used by ==. Read more

[src]

This method tests for !=.

impl Debug for RxState
[src]

[src]

Formats the value using the given formatter. Read more