Struct capsules_extra::ieee802154::framer::Framer
source · pub struct Framer<'a, M: Mac<'a>, A: AES128CCM<'a>> { /* private fields */ }
Expand description
This struct wraps an IEEE 802.15.4 radio device kernel::hil::radio::Radio
and exposes IEEE 802.15.4 MAC device functionality as the trait
capsules::mac::Mac
. It hides header preparation, transmission and
processing logic from the user by essentially maintaining multiple state
machines corresponding to the transmission, reception and
encryption/decryption pipelines. See the documentation in
capsules/src/mac.rs
for more details.
Implementations§
source§impl<'a, M: Mac<'a>, A: AES128CCM<'a>> Framer<'a, M, A>
impl<'a, M: Mac<'a>, A: AES128CCM<'a>> Framer<'a, M, A>
pub fn new( mac: &'a M, aes_ccm: &'a A, crypt_buf: SubSliceMut<'static, u8>, ) -> Framer<'a, M, A>
sourcepub fn set_key_procedure(&self, key_procedure: &'a dyn KeyProcedure)
pub fn set_key_procedure(&self, key_procedure: &'a dyn KeyProcedure)
Sets the IEEE 802.15.4 key lookup procedure to be used.
sourcepub fn set_device_procedure(&self, device_procedure: &'a dyn DeviceProcedure)
pub fn set_device_procedure(&self, device_procedure: &'a dyn DeviceProcedure)
Sets the IEEE 802.15.4 key lookup procedure to be used.
Trait Implementations§
source§impl<'a, M: Mac<'a>, A: AES128CCM<'a>> CCMClient for Framer<'a, M, A>
impl<'a, M: Mac<'a>, A: AES128CCM<'a>> CCMClient for Framer<'a, M, A>
source§fn crypt_done(
&self,
buf: &'static mut [u8],
res: Result<(), ErrorCode>,
tag_is_valid: bool,
)
fn crypt_done( &self, buf: &'static mut [u8], res: Result<(), ErrorCode>, tag_is_valid: bool, )
res
is Ok(()) if the encryption/decryption process succeeded. This
does not mean that the message has been verified in the case of
decryption.
If we are encrypting: tag_is_valid
is true
iff res
is Ok(()).
If we are decrypting: tag_is_valid
is true
iff res
is Ok(()) and the
message authentication tag is valid.source§impl<'a, M: Mac<'a>, A: AES128CCM<'a>> MacDevice<'a> for Framer<'a, M, A>
impl<'a, M: Mac<'a>, A: AES128CCM<'a>> MacDevice<'a> for Framer<'a, M, A>
source§fn set_transmit_client(&self, client: &'a dyn TxClient)
fn set_transmit_client(&self, client: &'a dyn TxClient)
Sets the transmission client of this MAC device
source§fn set_receive_client(&self, client: &'a dyn RxClient)
fn set_receive_client(&self, client: &'a dyn RxClient)
Sets the receive client of this MAC device
source§fn get_address(&self) -> u16
fn get_address(&self) -> u16
The short 16-bit address of the MAC device
source§fn get_address_long(&self) -> [u8; 8]
fn get_address_long(&self) -> [u8; 8]
The long 64-bit address (EUI-64) of the MAC device
source§fn set_address(&self, addr: u16)
fn set_address(&self, addr: u16)
Set the short 16-bit address of the MAC device
source§fn set_address_long(&self, addr: [u8; 8])
fn set_address_long(&self, addr: [u8; 8])
Set the long 64-bit address (EUI-64) of the MAC device
source§fn config_commit(&self)
fn config_commit(&self)
This method must be called after one or more calls to
set_*
. If
set_*
is called without calling config_commit
, there is no guarantee
that the underlying hardware configuration (addresses, pan ID) is in
line with this MAC device implementation.source§fn prepare_data_frame(
&self,
buf: &'static mut [u8],
dst_pan: PanID,
dst_addr: MacAddress,
src_pan: PanID,
src_addr: MacAddress,
security_needed: Option<(SecurityLevel, KeyId)>,
) -> Result<Frame, &'static mut [u8]>
fn prepare_data_frame( &self, buf: &'static mut [u8], dst_pan: PanID, dst_addr: MacAddress, src_pan: PanID, src_addr: MacAddress, security_needed: Option<(SecurityLevel, KeyId)>, ) -> Result<Frame, &'static mut [u8]>
Prepares a mutable buffer slice as an 802.15.4 frame by writing the appropriate
header bytes into the buffer. This needs to be done before adding the
payload because the length of the header is not fixed. Read more
Auto Trait Implementations§
impl<'a, M, A> !Freeze for Framer<'a, M, A>
impl<'a, M, A> !RefUnwindSafe for Framer<'a, M, A>
impl<'a, M, A> !Send for Framer<'a, M, A>
impl<'a, M, A> !Sync for Framer<'a, M, A>
impl<'a, M, A> Unpin for Framer<'a, M, A>
impl<'a, M, A> !UnwindSafe for Framer<'a, M, A>
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