Struct capsules_extra::ieee802154::virtual_mac::MacUser
source · pub struct MacUser<'a, M: MacDevice<'a>> { /* private fields */ }
Expand description
Keep state for each Mac user. All users of the virtualized MAC interface
need to create one of these and register it with the MAC device muxer
MuxMac
by calling MuxMac#add_user
. Then, each MacUser
behaves exactly
like an independent MAC device, except MAC device state is shared between
all MacUsers because there is only one MAC device. For example, the MAC
device address is shared, so calling set_address
on one MacUser
sets the
MAC address for all MacUser
s.
Implementations§
Trait Implementations§
source§impl<'a, M: MacDevice<'a>> MacDevice<'a> for MacUser<'a, M>
impl<'a, M: MacDevice<'a>> MacDevice<'a> for MacUser<'a, M>
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> !Freeze for MacUser<'a, M>
impl<'a, M> !RefUnwindSafe for MacUser<'a, M>
impl<'a, M> !Send for MacUser<'a, M>
impl<'a, M> !Sync for MacUser<'a, M>
impl<'a, M> Unpin for MacUser<'a, M>
impl<'a, M> !UnwindSafe for MacUser<'a, M>
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