diff options
| author | xoviat <[email protected]> | 2023-07-15 19:49:16 +0000 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-07-15 19:49:16 +0000 |
| commit | cf278ea1b6ce29b7908a9f93de4cbdfd7d0dea37 (patch) | |
| tree | b7c5ea2fdae0f23819af90515b7e3d5e6fa0d028 /tests | |
| parent | 758862f4b119ec3d701f8a82a623eaa838ac04a3 (diff) | |
| parent | 4db4200c37c191f4ec018dd318e805aa805d9cc3 (diff) | |
Merge pull request #1656 from xoviat/mac-4
wpan: factor mac logic into other mod
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/stm32/src/bin/wpan_mac.rs | 6 |
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::*; | |||
| 10 | use embassy_executor::Spawner; | 10 | use embassy_executor::Spawner; |
| 11 | use embassy_stm32::bind_interrupts; | 11 | use embassy_stm32::bind_interrupts; |
| 12 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; | 12 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; |
| 13 | use embassy_stm32_wpan::sub::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest}; | 13 | use embassy_stm32_wpan::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest}; |
| 14 | use embassy_stm32_wpan::sub::mac::event::MacEvent; | 14 | use embassy_stm32_wpan::mac::event::MacEvent; |
| 15 | use embassy_stm32_wpan::sub::mac::typedefs::{ | 15 | use 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 | }; |
| 18 | use embassy_stm32_wpan::sub::mm; | 18 | use embassy_stm32_wpan::sub::mm; |
