aboutsummaryrefslogtreecommitdiff
path: root/tests/stm32/src
diff options
context:
space:
mode:
authorxoviat <[email protected]>2023-07-15 14:47:34 -0500
committerxoviat <[email protected]>2023-07-15 14:47:34 -0500
commit4db4200c37c191f4ec018dd318e805aa805d9cc3 (patch)
treeb7c5ea2fdae0f23819af90515b7e3d5e6fa0d028 /tests/stm32/src
parent3705b4f40d206490a5165a287791206ac70573d9 (diff)
wpan: factor mac logic into other mod
Diffstat (limited to 'tests/stm32/src')
-rw-r--r--tests/stm32/src/bin/wpan_mac.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/stm32/src/bin/wpan_mac.rs b/tests/stm32/src/bin/wpan_mac.rs
index d97a4d404..cfa0aca3b 100644
--- a/tests/stm32/src/bin/wpan_mac.rs
+++ b/tests/stm32/src/bin/wpan_mac.rs
@@ -10,9 +10,9 @@ use common::*;
10use embassy_executor::Spawner; 10use embassy_executor::Spawner;
11use embassy_stm32::bind_interrupts; 11use embassy_stm32::bind_interrupts;
12use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; 12use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler};
13use embassy_stm32_wpan::sub::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest}; 13use embassy_stm32_wpan::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest};
14use embassy_stm32_wpan::sub::mac::event::MacEvent; 14use embassy_stm32_wpan::mac::event::MacEvent;
15use embassy_stm32_wpan::sub::mac::typedefs::{ 15use embassy_stm32_wpan::mac::typedefs::{
16 AddressMode, Capabilities, KeyIdMode, MacAddress, MacChannel, PanId, PibId, SecurityLevel, 16 AddressMode, Capabilities, KeyIdMode, MacAddress, MacChannel, PanId, PibId, SecurityLevel,
17}; 17};
18use embassy_stm32_wpan::sub::mm; 18use embassy_stm32_wpan::sub::mm;