1use stm32f4xx::chip_specific::clock_constants::{PllConstants, SystemClockConstants};
10use stm32f4xx::chip_specific::flash::{FlashChipSpecific, FlashLatency16};
11
12pub enum Stm32f412Specs {}
13
14impl PllConstants for Stm32f412Specs {
15    const MIN_FREQ_MHZ: usize = 13;
16}
17
18impl SystemClockConstants for Stm32f412Specs {
19    const APB1_FREQUENCY_LIMIT_MHZ: usize = 50;
20    const SYS_CLOCK_FREQUENCY_LIMIT_MHZ: usize = 100;
21}
22
23impl FlashChipSpecific for Stm32f412Specs {
24    type FlashLatency = FlashLatency16;
25
26    fn get_number_wait_cycles_based_on_frequency(frequency_mhz: usize) -> Self::FlashLatency {
27        match frequency_mhz {
28            0..=30 => Self::FlashLatency::Latency0,
29            31..=64 => Self::FlashLatency::Latency1,
30            65..=90 => Self::FlashLatency::Latency2,
31            _ => Self::FlashLatency::Latency3,
32        }
33    }
34}