stm32/rcc: use wpan default only for wpan
This commit is contained in:
parent
1425dda0a7
commit
270d1d59a0
3 changed files with 44 additions and 20 deletions
|
@ -182,32 +182,48 @@ pub struct Config {
|
||||||
pub apb2_pre: APBPrescaler,
|
pub apb2_pre: APBPrescaler,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
pub const WPAN_DEFAULT: Config = Config {
|
||||||
|
hse: Some(Hse {
|
||||||
|
frequency: mhz(32),
|
||||||
|
prediv: HsePrescaler::NotDivided,
|
||||||
|
}),
|
||||||
|
lse: Some(khz(32)),
|
||||||
|
sys: Sysclk::Pll,
|
||||||
|
mux: Some(PllMux {
|
||||||
|
source: PllSource::Hse,
|
||||||
|
prediv: 2,
|
||||||
|
}),
|
||||||
|
pll48: None,
|
||||||
|
|
||||||
|
pll: Some(Pll {
|
||||||
|
mul: 12,
|
||||||
|
divp: Some(3),
|
||||||
|
divq: Some(4),
|
||||||
|
divr: Some(3),
|
||||||
|
}),
|
||||||
|
pllsai: None,
|
||||||
|
|
||||||
|
ahb1_pre: AHBPrescaler::NotDivided,
|
||||||
|
ahb2_pre: AHBPrescaler::Div2,
|
||||||
|
ahb3_pre: AHBPrescaler::NotDivided,
|
||||||
|
apb1_pre: APBPrescaler::NotDivided,
|
||||||
|
apb2_pre: APBPrescaler::NotDivided,
|
||||||
|
};
|
||||||
|
|
||||||
impl Default for Config {
|
impl Default for Config {
|
||||||
#[inline]
|
#[inline]
|
||||||
fn default() -> Config {
|
fn default() -> Config {
|
||||||
Config {
|
Config {
|
||||||
hse: Some(Hse {
|
hse: None,
|
||||||
frequency: mhz(32),
|
lse: None,
|
||||||
prediv: HsePrescaler::NotDivided,
|
sys: Sysclk::HSI,
|
||||||
}),
|
mux: None,
|
||||||
lse: Some(khz(32)),
|
|
||||||
sys: Sysclk::Pll,
|
|
||||||
mux: Some(PllMux {
|
|
||||||
source: PllSource::Hse,
|
|
||||||
prediv: 2,
|
|
||||||
}),
|
|
||||||
pll48: None,
|
pll48: None,
|
||||||
|
pll: None,
|
||||||
pll: Some(Pll {
|
|
||||||
mul: 12,
|
|
||||||
divp: Some(3),
|
|
||||||
divq: Some(4),
|
|
||||||
divr: Some(3),
|
|
||||||
}),
|
|
||||||
pllsai: None,
|
pllsai: None,
|
||||||
|
|
||||||
ahb1_pre: AHBPrescaler::NotDivided,
|
ahb1_pre: AHBPrescaler::NotDivided,
|
||||||
ahb2_pre: AHBPrescaler::Div2,
|
ahb2_pre: AHBPrescaler::NotDivided,
|
||||||
ahb3_pre: AHBPrescaler::NotDivided,
|
ahb3_pre: AHBPrescaler::NotDivided,
|
||||||
apb1_pre: APBPrescaler::NotDivided,
|
apb1_pre: APBPrescaler::NotDivided,
|
||||||
apb2_pre: APBPrescaler::NotDivided,
|
apb2_pre: APBPrescaler::NotDivided,
|
||||||
|
|
|
@ -12,6 +12,7 @@ use common::*;
|
||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_stm32::bind_interrupts;
|
use embassy_stm32::bind_interrupts;
|
||||||
use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler};
|
use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler};
|
||||||
|
use embassy_stm32::rcc::WPAN_DEFAULT;
|
||||||
use embassy_stm32_wpan::hci::host::uart::UartHci;
|
use embassy_stm32_wpan::hci::host::uart::UartHci;
|
||||||
use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType};
|
use embassy_stm32_wpan::hci::host::{AdvertisingFilterPolicy, EncryptionKey, HostHci, OwnAddressType};
|
||||||
use embassy_stm32_wpan::hci::types::AdvertisingType;
|
use embassy_stm32_wpan::hci::types::AdvertisingType;
|
||||||
|
@ -40,7 +41,10 @@ async fn run_mm_queue(memory_manager: mm::MemoryManager) {
|
||||||
|
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(spawner: Spawner) {
|
async fn main(spawner: Spawner) {
|
||||||
let p = embassy_stm32::init(config());
|
let mut config = config();
|
||||||
|
config.rcc = WPAN_DEFAULT;
|
||||||
|
|
||||||
|
let p = embassy_stm32::init(config);
|
||||||
info!("Hello World!");
|
info!("Hello World!");
|
||||||
|
|
||||||
let config = Config::default();
|
let config = Config::default();
|
||||||
|
|
|
@ -10,6 +10,7 @@ use common::*;
|
||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_stm32::bind_interrupts;
|
use embassy_stm32::bind_interrupts;
|
||||||
use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler};
|
use embassy_stm32::ipcc::{Config, ReceiveInterruptHandler, TransmitInterruptHandler};
|
||||||
|
use embassy_stm32::rcc::WPAN_DEFAULT;
|
||||||
use embassy_stm32_wpan::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest};
|
use embassy_stm32_wpan::mac::commands::{AssociateRequest, GetRequest, ResetRequest, SetRequest};
|
||||||
use embassy_stm32_wpan::mac::event::MacEvent;
|
use embassy_stm32_wpan::mac::event::MacEvent;
|
||||||
use embassy_stm32_wpan::mac::typedefs::{
|
use embassy_stm32_wpan::mac::typedefs::{
|
||||||
|
@ -31,7 +32,10 @@ async fn run_mm_queue(memory_manager: mm::MemoryManager) {
|
||||||
|
|
||||||
#[embassy_executor::main]
|
#[embassy_executor::main]
|
||||||
async fn main(spawner: Spawner) {
|
async fn main(spawner: Spawner) {
|
||||||
let p = embassy_stm32::init(config());
|
let mut config = config();
|
||||||
|
config.rcc = WPAN_DEFAULT;
|
||||||
|
|
||||||
|
let p = embassy_stm32::init(config);
|
||||||
info!("Hello World!");
|
info!("Hello World!");
|
||||||
|
|
||||||
let config = Config::default();
|
let config = Config::default();
|
||||||
|
|
Loading…
Reference in a new issue