diff options
| author | xoviat <[email protected]> | 2023-06-23 17:54:06 -0500 |
|---|---|---|
| committer | xoviat <[email protected]> | 2023-06-23 17:54:06 -0500 |
| commit | 29f32ce00ec0f50ef5e3b29c7e50f7f5479b4967 (patch) | |
| tree | ab2d04d6cce0de6471a24aae4a68bf36011170e4 /tests | |
| parent | 4dd48099bee305fc31e47a586f34d09c3ec02673 (diff) | |
stm32/wpan: reorg subsystems
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/stm32/src/bin/tl_mbox.rs | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/tests/stm32/src/bin/tl_mbox.rs b/tests/stm32/src/bin/tl_mbox.rs index 76c736a5b..8880554de 100644 --- a/tests/stm32/src/bin/tl_mbox.rs +++ b/tests/stm32/src/bin/tl_mbox.rs | |||
| @@ -12,17 +12,18 @@ use common::*; | |||
| 12 | use embassy_executor::Spawner; | 12 | use embassy_executor::Spawner; |
| 13 | use embassy_stm32::bind_interrupts; | 13 | use embassy_stm32::bind_interrupts; |
| 14 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; | 14 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; |
| 15 | use embassy_stm32_wpan::ble::hci::host::uart::UartHci; | 15 | use embassy_stm32_wpan::hci::host::uart::UartHci; |
| 16 | use embassy_stm32_wpan::ble::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType}; | 16 | use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType}; |
| 17 | use embassy_stm32_wpan::ble::hci::types::AdvertisingType; | 17 | use embassy_stm32_wpan::hci::types::AdvertisingType; |
| 18 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::gap::{ | 18 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::gap::{ |
| 19 | AdvertisingDataType, DiscoverableParameters, GapCommands, Role, | 19 | AdvertisingDataType, DiscoverableParameters, GapCommands, Role, |
| 20 | }; | 20 | }; |
| 21 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::gatt::GattCommands; | 21 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::gatt::GattCommands; |
| 22 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::hal::{ConfigData, HalCommands, PowerLevel}; | 22 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::hal::{ConfigData, HalCommands, PowerLevel}; |
| 23 | use embassy_stm32_wpan::ble::hci::BdAddr; | 23 | use embassy_stm32_wpan::hci::BdAddr; |
| 24 | use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp; | 24 | use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp; |
| 25 | use embassy_stm32_wpan::{mm, TlMbox}; | 25 | use embassy_stm32_wpan::sub::mm; |
| 26 | use embassy_stm32_wpan::TlMbox; | ||
| 26 | use {defmt_rtt as _, panic_probe as _}; | 27 | use {defmt_rtt as _, panic_probe as _}; |
| 27 | 28 | ||
| 28 | bind_interrupts!(struct Irqs{ | 29 | bind_interrupts!(struct Irqs{ |
