Simplify SUBGHZSPI configuration.
This commit is contained in:
parent
b1ef856242
commit
91612b7446
@ -194,17 +194,17 @@ impl<'d, T: Instance, Tx, Rx> Spi<'d, T, Tx, Rx> {
|
|||||||
Self::new_inner(peri, None, Some(mosi.map_into()), None, txdma, rxdma, freq, config)
|
Self::new_inner(peri, None, Some(mosi.map_into()), None, txdma, rxdma, freq, config)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#[cfg(stm32wl)]
|
||||||
/// Useful for on chip peripherals like SUBGHZ which are hardwired.
|
/// Useful for on chip peripherals like SUBGHZ which are hardwired.
|
||||||
#[allow(dead_code)]
|
|
||||||
pub fn new_subghz(
|
pub fn new_subghz(
|
||||||
peri: impl Peripheral<P = T> + 'd,
|
peri: impl Peripheral<P = T> + 'd,
|
||||||
txdma: impl Peripheral<P = Tx> + 'd,
|
txdma: impl Peripheral<P = Tx> + 'd,
|
||||||
rxdma: impl Peripheral<P = Rx> + 'd,
|
rxdma: impl Peripheral<P = Rx> + 'd,
|
||||||
pclk3_freq: u32,
|
|
||||||
) -> Self {
|
) -> Self {
|
||||||
// see RM0453 rev 1 section 7.2.13 page 291
|
// see RM0453 rev 1 section 7.2.13 page 291
|
||||||
// The SUBGHZSPI_SCK frequency is obtained by PCLK3 divided by two.
|
// The SUBGHZSPI_SCK frequency is obtained by PCLK3 divided by two.
|
||||||
// The SUBGHZSPI_SCK clock maximum speed must not exceed 16 MHz.
|
// The SUBGHZSPI_SCK clock maximum speed must not exceed 16 MHz.
|
||||||
|
let pclk3_freq = <peripherals::SUBGHZSPI as crate::rcc::sealed::RccPeripheral>::frequency().0;
|
||||||
let freq = Hertz(core::cmp::min(pclk3_freq / 2, 16_000_000));
|
let freq = Hertz(core::cmp::min(pclk3_freq / 2, 16_000_000));
|
||||||
let mut config = Config::default();
|
let mut config = Config::default();
|
||||||
config.mode = MODE_0;
|
config.mode = MODE_0;
|
||||||
|
@ -11,8 +11,6 @@ use embassy_executor::Spawner;
|
|||||||
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
||||||
use embassy_lora::LoraTimer;
|
use embassy_lora::LoraTimer;
|
||||||
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
||||||
use embassy_stm32::peripherals::SUBGHZSPI;
|
|
||||||
use embassy_stm32::rcc::low_level::RccPeripheral;
|
|
||||||
use embassy_stm32::rng::Rng;
|
use embassy_stm32::rng::Rng;
|
||||||
use embassy_stm32::spi::Spi;
|
use embassy_stm32::spi::Spi;
|
||||||
use embassy_stm32::{interrupt, into_ref, pac, Peripheral};
|
use embassy_stm32::{interrupt, into_ref, pac, Peripheral};
|
||||||
@ -36,8 +34,7 @@ async fn main(_spawner: Spawner) {
|
|||||||
|
|
||||||
unsafe { pac::RCC.ccipr().modify(|w| w.set_rngsel(0b01)) }
|
unsafe { pac::RCC.ccipr().modify(|w| w.set_rngsel(0b01)) }
|
||||||
|
|
||||||
let pclk3_freq = SUBGHZSPI::frequency().0;
|
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2);
|
||||||
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2, pclk3_freq);
|
|
||||||
|
|
||||||
let irq = interrupt::take!(SUBGHZ_RADIO);
|
let irq = interrupt::take!(SUBGHZ_RADIO);
|
||||||
into_ref!(irq);
|
into_ref!(irq);
|
||||||
|
@ -10,8 +10,6 @@ use defmt::info;
|
|||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
||||||
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
||||||
use embassy_stm32::peripherals::SUBGHZSPI;
|
|
||||||
use embassy_stm32::rcc::low_level::RccPeripheral;
|
|
||||||
use embassy_stm32::spi::Spi;
|
use embassy_stm32::spi::Spi;
|
||||||
use embassy_stm32::{interrupt, into_ref, Peripheral};
|
use embassy_stm32::{interrupt, into_ref, Peripheral};
|
||||||
use embassy_time::{Delay, Duration, Timer};
|
use embassy_time::{Delay, Duration, Timer};
|
||||||
@ -28,8 +26,7 @@ async fn main(_spawner: Spawner) {
|
|||||||
config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE32;
|
config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE32;
|
||||||
let p = embassy_stm32::init(config);
|
let p = embassy_stm32::init(config);
|
||||||
|
|
||||||
let pclk3_freq = SUBGHZSPI::frequency().0;
|
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2);
|
||||||
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2, pclk3_freq);
|
|
||||||
|
|
||||||
let irq = interrupt::take!(SUBGHZ_RADIO);
|
let irq = interrupt::take!(SUBGHZ_RADIO);
|
||||||
into_ref!(irq);
|
into_ref!(irq);
|
||||||
|
@ -10,8 +10,6 @@ use defmt::info;
|
|||||||
use embassy_executor::Spawner;
|
use embassy_executor::Spawner;
|
||||||
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
use embassy_lora::iv::Stm32wlInterfaceVariant;
|
||||||
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
use embassy_stm32::gpio::{Level, Output, Pin, Speed};
|
||||||
use embassy_stm32::peripherals::SUBGHZSPI;
|
|
||||||
use embassy_stm32::rcc::low_level::RccPeripheral;
|
|
||||||
use embassy_stm32::spi::Spi;
|
use embassy_stm32::spi::Spi;
|
||||||
use embassy_stm32::{interrupt, into_ref, Peripheral};
|
use embassy_stm32::{interrupt, into_ref, Peripheral};
|
||||||
use embassy_time::Delay;
|
use embassy_time::Delay;
|
||||||
@ -28,8 +26,7 @@ async fn main(_spawner: Spawner) {
|
|||||||
config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE32;
|
config.rcc.mux = embassy_stm32::rcc::ClockSrc::HSE32;
|
||||||
let p = embassy_stm32::init(config);
|
let p = embassy_stm32::init(config);
|
||||||
|
|
||||||
let pclk3_freq = SUBGHZSPI::frequency().0;
|
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2);
|
||||||
let spi = Spi::new_subghz(p.SUBGHZSPI, p.DMA1_CH1, p.DMA1_CH2, pclk3_freq);
|
|
||||||
|
|
||||||
let irq = interrupt::take!(SUBGHZ_RADIO);
|
let irq = interrupt::take!(SUBGHZ_RADIO);
|
||||||
into_ref!(irq);
|
into_ref!(irq);
|
||||||
|
Loading…
Reference in New Issue
Block a user