Trait PllConstants

Source
pub trait PllConstants {
    const MIN_FREQ_MHZ: usize;
    const MAX_FREQ_MHZ: usize = 216usize;
}
Expand description

PLL-related constants for specific for a specific chip

Required Associated Constants§

Source

const MIN_FREQ_MHZ: usize

PLL minimum frequency in MHz

Provided Associated Constants§

Source

const MAX_FREQ_MHZ: usize = 216usize

PLL maximum frequency in MHz

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§