aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--embassy-stm32-wpan/src/mac/indications.rs3
1 files changed, 1 insertions, 2 deletions
diff --git a/embassy-stm32-wpan/src/mac/indications.rs b/embassy-stm32-wpan/src/mac/indications.rs
index a43777e75..5673514c9 100644
--- a/embassy-stm32-wpan/src/mac/indications.rs
+++ b/embassy-stm32-wpan/src/mac/indications.rs
@@ -3,14 +3,13 @@ use core::slice;
3use smoltcp::wire::Ieee802154FrameType; 3use smoltcp::wire::Ieee802154FrameType;
4use smoltcp::wire::ieee802154::Frame; 4use smoltcp::wire::ieee802154::Frame;
5 5
6use crate::mac::typedefs::MacAddressAndMode;
7
8use super::consts::MAX_PENDING_ADDRESS; 6use super::consts::MAX_PENDING_ADDRESS;
9use super::event::ParseableMacEvent; 7use super::event::ParseableMacEvent;
10use super::typedefs::{ 8use super::typedefs::{
11 AddressMode, Capabilities, DisassociationReason, KeyIdMode, MacAddress, MacChannel, MacStatus, PanDescriptor, 9 AddressMode, Capabilities, DisassociationReason, KeyIdMode, MacAddress, MacChannel, MacStatus, PanDescriptor,
12 PanId, SecurityLevel, 10 PanId, SecurityLevel,
13}; 11};
12use crate::mac::typedefs::MacAddressAndMode;
14 13
15/// MLME ASSOCIATE Indication which will be used by the MAC 14/// MLME ASSOCIATE Indication which will be used by the MAC
16/// to indicate the reception of an association request command 15/// to indicate the reception of an association request command