Trait stm32f7xx_hal::rcc::GetBusFreq[][src]

pub trait GetBusFreq {
    fn get_frequency(clocks: &Clocks) -> Hertz;

    fn get_timer_frequency(clocks: &Clocks) -> Hertz { ... }
}
Expand description

Trait to get the frequency of a bus.

Required methods

Returns the frequency of the bus.

Provided methods

Returns the timer frequency of the bus.

Timers on an APB bus run at twice the bus speed if the APB prescaler is >= 2.

Implementors