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 /examples/stm32wb/src | |
| parent | 4dd48099bee305fc31e47a586f34d09c3ec02673 (diff) | |
stm32/wpan: reorg subsystems
Diffstat (limited to 'examples/stm32wb/src')
| -rw-r--r-- | examples/stm32wb/src/bin/eddystone_beacon.rs | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/stm32wb/src/bin/eddystone_beacon.rs b/examples/stm32wb/src/bin/eddystone_beacon.rs index fdd5be4a2..b99f8cb2e 100644 --- a/examples/stm32wb/src/bin/eddystone_beacon.rs +++ b/examples/stm32wb/src/bin/eddystone_beacon.rs | |||
| @@ -8,15 +8,15 @@ use defmt::*; | |||
| 8 | use embassy_executor::Spawner; | 8 | use embassy_executor::Spawner; |
| 9 | use embassy_stm32::bind_interrupts; | 9 | use embassy_stm32::bind_interrupts; |
| 10 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; | 10 | use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler}; |
| 11 | use embassy_stm32_wpan::ble::hci::host::uart::UartHci; | 11 | use embassy_stm32_wpan::hci::host::uart::UartHci; |
| 12 | use embassy_stm32_wpan::ble::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType}; | 12 | use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType}; |
| 13 | use embassy_stm32_wpan::ble::hci::types::AdvertisingType; | 13 | use embassy_stm32_wpan::hci::types::AdvertisingType; |
| 14 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::gap::{ | 14 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::gap::{ |
| 15 | AdvertisingDataType, DiscoverableParameters, GapCommands, Role, | 15 | AdvertisingDataType, DiscoverableParameters, GapCommands, Role, |
| 16 | }; | 16 | }; |
| 17 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::gatt::GattCommands; | 17 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::gatt::GattCommands; |
| 18 | use embassy_stm32_wpan::ble::hci::vendor::stm32wb::command::hal::{ConfigData, HalCommands, PowerLevel}; | 18 | use embassy_stm32_wpan::hci::vendor::stm32wb::command::hal::{ConfigData, HalCommands, PowerLevel}; |
| 19 | use embassy_stm32_wpan::ble::hci::BdAddr; | 19 | use embassy_stm32_wpan::hci::BdAddr; |
| 20 | use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp; | 20 | use embassy_stm32_wpan::lhci::LhciC1DeviceInformationCcrp; |
| 21 | use embassy_stm32_wpan::TlMbox; | 21 | use embassy_stm32_wpan::TlMbox; |
| 22 | use {defmt_rtt as _, panic_probe as _}; | 22 | use {defmt_rtt as _, panic_probe as _}; |
