aboutsummaryrefslogtreecommitdiff
path: root/embassy-stm32-wpan/src/mac/indications.rs
diff options
context:
space:
mode:
Diffstat (limited to 'embassy-stm32-wpan/src/mac/indications.rs')
-rw-r--r--embassy-stm32-wpan/src/mac/indications.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/embassy-stm32-wpan/src/mac/indications.rs b/embassy-stm32-wpan/src/mac/indications.rs
index 45f79ac5b..05869ba2a 100644
--- a/embassy-stm32-wpan/src/mac/indications.rs
+++ b/embassy-stm32-wpan/src/mac/indications.rs
@@ -1,5 +1,8 @@
1use core::slice; 1use core::slice;
2 2
3use smoltcp::wire::Ieee802154FrameType;
4use smoltcp::wire::ieee802154::Frame;
5
3use super::consts::MAX_PENDING_ADDRESS; 6use super::consts::MAX_PENDING_ADDRESS;
4use super::event::ParseableMacEvent; 7use super::event::ParseableMacEvent;
5use super::typedefs::{ 8use super::typedefs::{
@@ -7,9 +10,6 @@ use super::typedefs::{
7 PanId, SecurityLevel, 10 PanId, SecurityLevel,
8}; 11};
9 12
10use smoltcp::wire::Ieee802154FrameType;
11use smoltcp::wire::ieee802154::Frame;
12
13/// MLME ASSOCIATE Indication which will be used by the MAC 13/// MLME ASSOCIATE Indication which will be used by the MAC
14/// to indicate the reception of an association request command 14/// to indicate the reception of an association request command
15#[repr(C)] 15#[repr(C)]