embassy/embassy-stm32
Marco Pastrello 5158014f3f PPLXTPRE is a bool.
This flag for example permits the following clock tree
configuration on stm32f103r8

    let mut config = Config::default();
    config.rcc.hse = Some(Hertz(16_000_000));
    config.rcc.sys_ck = Some(Hertz(72_000_000));
    config.rcc.pclk1 = Some(Hertz(36_000_000));
    config.rcc.pclk2 = Some(Hertz(72_000_000));
    config.rcc.pllxtpre = true;

Init fails if pllxtpre is false.
2023-05-04 22:59:52 +02:00
..
src PPLXTPRE is a bool. 2023-05-04 22:59:52 +02:00
build.rs Merge pull request #1348 from embassy-rs/h5-spi 2023-04-18 17:03:24 +02:00
Cargo.toml stm32/usart: add OVER8 and PRESC support, update PAC 2023-05-02 19:36:00 +02:00