2021-03-19 21:26:20 +01:00
|
|
|
#![no_std]
|
2022-02-12 02:26:15 +01:00
|
|
|
#![cfg_attr(
|
|
|
|
feature = "nightly",
|
|
|
|
feature(generic_associated_types, type_alias_impl_trait)
|
|
|
|
)]
|
2021-03-19 21:26:20 +01:00
|
|
|
|
2021-07-14 22:19:04 +02:00
|
|
|
#[cfg(feature = "unstable-pac")]
|
|
|
|
pub use stm32_metapac as pac;
|
|
|
|
#[cfg(not(feature = "unstable-pac"))]
|
2021-05-25 04:17:24 +02:00
|
|
|
pub(crate) use stm32_metapac as pac;
|
|
|
|
|
2021-04-23 23:47:34 +02:00
|
|
|
// This must go FIRST so that all the other modules see its macros.
|
2021-03-19 21:26:20 +01:00
|
|
|
pub mod fmt;
|
2022-03-04 17:42:38 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/_macros.rs"));
|
2021-03-19 21:26:20 +01:00
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
// Utilities
|
|
|
|
pub mod interrupt;
|
|
|
|
pub mod time;
|
2022-02-10 21:38:03 +01:00
|
|
|
mod traits;
|
2021-05-25 04:17:24 +02:00
|
|
|
|
|
|
|
// Always-present hardware
|
2021-07-15 05:42:06 +02:00
|
|
|
pub mod dma;
|
2021-04-06 01:31:29 +02:00
|
|
|
pub mod gpio;
|
2021-05-25 04:17:24 +02:00
|
|
|
pub mod rcc;
|
2021-08-04 12:05:22 +02:00
|
|
|
#[cfg(feature = "_time-driver")]
|
2021-08-03 22:08:13 +02:00
|
|
|
mod time_driver;
|
2021-12-08 17:36:40 +01:00
|
|
|
pub mod timer;
|
2021-05-25 04:17:24 +02:00
|
|
|
|
|
|
|
// Sometimes-present hardware
|
2021-07-08 20:55:27 +02:00
|
|
|
|
2021-06-10 21:33:43 +02:00
|
|
|
#[cfg(adc)]
|
|
|
|
pub mod adc;
|
2021-08-06 11:59:16 +02:00
|
|
|
#[cfg(can)]
|
|
|
|
pub mod can;
|
2021-05-28 19:31:40 +02:00
|
|
|
#[cfg(dac)]
|
|
|
|
pub mod dac;
|
2021-11-10 14:47:16 +01:00
|
|
|
#[cfg(dcmi)]
|
|
|
|
pub mod dcmi;
|
2021-06-14 23:30:11 +02:00
|
|
|
#[cfg(all(eth, feature = "net"))]
|
2021-06-07 07:30:38 +02:00
|
|
|
pub mod eth;
|
2022-01-12 12:43:24 +01:00
|
|
|
#[cfg(feature = "exti")]
|
2021-06-25 00:36:42 +02:00
|
|
|
pub mod exti;
|
2022-02-08 14:32:18 +01:00
|
|
|
#[cfg(fmc)]
|
|
|
|
pub mod fmc;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(i2c)]
|
2021-05-24 17:41:37 +02:00
|
|
|
pub mod i2c;
|
2021-07-30 20:06:10 +02:00
|
|
|
|
2021-09-27 01:46:17 +02:00
|
|
|
#[cfg(crc)]
|
|
|
|
pub mod crc;
|
2021-11-27 03:05:10 +01:00
|
|
|
pub mod pwm;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(rng)]
|
2021-04-26 20:11:46 +02:00
|
|
|
pub mod rng;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(sdmmc)]
|
2021-05-17 02:04:51 +02:00
|
|
|
pub mod sdmmc;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(spi)]
|
2021-05-10 21:21:57 +02:00
|
|
|
pub mod spi;
|
2021-05-25 04:17:24 +02:00
|
|
|
#[cfg(usart)]
|
2021-05-06 03:59:16 +02:00
|
|
|
pub mod usart;
|
2022-02-09 01:02:23 +01:00
|
|
|
#[cfg(feature = "usb-otg")]
|
|
|
|
pub mod usb_otg;
|
2021-04-26 20:11:46 +02:00
|
|
|
|
2021-08-31 14:32:48 +02:00
|
|
|
#[cfg(feature = "subghz")]
|
|
|
|
pub mod subghz;
|
|
|
|
|
2021-05-25 04:17:24 +02:00
|
|
|
// This must go last, so that it sees all the impl_foo! macros defined earlier.
|
2022-03-04 17:42:38 +01:00
|
|
|
pub(crate) mod _generated {
|
2021-05-25 04:17:24 +02:00
|
|
|
#![allow(dead_code)]
|
|
|
|
#![allow(unused_imports)]
|
|
|
|
#![allow(non_snake_case)]
|
2021-05-10 21:21:57 +02:00
|
|
|
|
2022-03-04 17:42:38 +01:00
|
|
|
include!(concat!(env!("OUT_DIR"), "/_generated.rs"));
|
2021-05-25 04:17:24 +02:00
|
|
|
}
|
2022-03-04 17:42:38 +01:00
|
|
|
pub use _generated::{peripherals, Peripherals};
|
2021-05-25 04:17:24 +02:00
|
|
|
pub use embassy_macros::interrupt;
|
2021-05-01 03:07:17 +02:00
|
|
|
|
|
|
|
#[non_exhaustive]
|
|
|
|
pub struct Config {
|
2021-08-04 17:32:39 +02:00
|
|
|
pub rcc: rcc::Config,
|
2022-02-25 01:16:23 +01:00
|
|
|
#[cfg(dbgmcu)]
|
2021-08-19 23:32:22 +02:00
|
|
|
pub enable_debug_during_sleep: bool,
|
2021-05-25 17:09:01 +02:00
|
|
|
}
|
|
|
|
|
2021-05-01 03:07:17 +02:00
|
|
|
impl Default for Config {
|
|
|
|
fn default() -> Self {
|
2021-05-25 13:30:42 +02:00
|
|
|
Self {
|
|
|
|
rcc: Default::default(),
|
2022-02-25 01:16:23 +01:00
|
|
|
#[cfg(dbgmcu)]
|
2021-08-19 23:32:22 +02:00
|
|
|
enable_debug_during_sleep: true,
|
2021-05-25 13:30:42 +02:00
|
|
|
}
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Initialize embassy.
|
2021-05-25 13:30:42 +02:00
|
|
|
pub fn init(config: Config) -> Peripherals {
|
2021-05-01 03:07:17 +02:00
|
|
|
let p = Peripherals::take();
|
|
|
|
|
|
|
|
unsafe {
|
2022-02-25 01:16:23 +01:00
|
|
|
#[cfg(dbgmcu)]
|
2021-08-19 23:32:22 +02:00
|
|
|
if config.enable_debug_during_sleep {
|
2022-01-04 23:58:57 +01:00
|
|
|
crate::pac::DBGMCU.cr().modify(|cr| {
|
2022-02-26 01:20:42 +01:00
|
|
|
#[cfg(any(dbgmcu_f0, dbgmcu_g0, dbgmcu_u5))]
|
|
|
|
{
|
|
|
|
cr.set_dbg_stop(true);
|
|
|
|
cr.set_dbg_standby(true);
|
|
|
|
}
|
|
|
|
#[cfg(any(
|
|
|
|
dbgmcu_f1, dbgmcu_f2, dbgmcu_f3, dbgmcu_f4, dbgmcu_f7, dbgmcu_g4, dbgmcu_f7,
|
|
|
|
dbgmcu_l0, dbgmcu_l1, dbgmcu_l4, dbgmcu_wb, dbgmcu_wl
|
|
|
|
))]
|
|
|
|
{
|
|
|
|
cr.set_dbg_sleep(true);
|
|
|
|
cr.set_dbg_stop(true);
|
|
|
|
cr.set_dbg_standby(true);
|
|
|
|
}
|
|
|
|
#[cfg(dbgmcu_h7)]
|
|
|
|
{
|
|
|
|
cr.set_d1dbgcken(true);
|
|
|
|
cr.set_d3dbgcken(true);
|
|
|
|
cr.set_dbgsleep_d1(true);
|
|
|
|
cr.set_dbgstby_d1(true);
|
|
|
|
cr.set_dbgstop_d1(true);
|
2022-01-04 23:58:57 +01:00
|
|
|
}
|
|
|
|
});
|
2021-08-19 23:32:22 +02:00
|
|
|
}
|
|
|
|
|
2021-07-22 20:38:45 +02:00
|
|
|
gpio::init();
|
2021-05-17 02:04:51 +02:00
|
|
|
dma::init();
|
2022-01-12 12:43:24 +01:00
|
|
|
#[cfg(feature = "exti")]
|
2021-06-03 20:25:17 +02:00
|
|
|
exti::init();
|
2021-07-06 15:54:55 +02:00
|
|
|
|
2021-05-25 13:30:42 +02:00
|
|
|
rcc::init(config.rcc);
|
2021-08-03 22:08:13 +02:00
|
|
|
|
|
|
|
// must be after rcc init
|
2021-08-04 12:05:22 +02:00
|
|
|
#[cfg(feature = "_time-driver")]
|
2021-08-03 22:08:13 +02:00
|
|
|
time_driver::init();
|
2021-05-01 03:07:17 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
p
|
|
|
|
}
|