pub struct ICE40PLLBlock<const FIN_FREQ: u64, const FOUT_FREQ: u64> {
pub clock_in: Signal<In, Clock>,
pub clock_out: Signal<Out, Clock>,
pub locked: Signal<Out, Bit>,
/* private fields */
}
Fields§
§clock_in: Signal<In, Clock>
§clock_out: Signal<Out, Clock>
§locked: Signal<Out, Bit>
Trait Implementations§
Source§impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Block for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Block for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
Source§fn connect_all(&mut self)
fn connect_all(&mut self)
Connects the internal signals of the circuit - used to initialize the circuit
Source§fn update_all(&mut self)
fn update_all(&mut self)
Propogate changes from inputs to outputs within the circuit
Source§fn has_changed(&self) -> bool
fn has_changed(&self) -> bool
Returns
true
if anything in the circuit has changed (outputs or internal state)Auto Trait Implementations§
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Freeze for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> RefUnwindSafe for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Send for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Sync for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> Unpin for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
impl<const FIN_FREQ: u64, const FOUT_FREQ: u64> UnwindSafe for ICE40PLLBlock<FIN_FREQ, FOUT_FREQ>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more