pub struct HLSSPIMaster<const D: usize, const A: usize, const W: usize> {
pub spi: SPIWiresMaster,
pub upstream: SoCBusResponder<D, A>,
/* private fields */
}
Fields§
§spi: SPIWiresMaster
§upstream: SoCBusResponder<D, A>
Implementations§
Trait Implementations§
Source§impl<const D: usize, const A: usize, const W: usize> Block for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> Block for HLSSPIMaster<D, A, W>
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)Source§impl<const D: usize, const A: usize, const W: usize> HLSNamedPorts for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> HLSNamedPorts for HLSSPIMaster<D, A, W>
Auto Trait Implementations§
impl<const D: usize, const A: usize, const W: usize> Freeze for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> RefUnwindSafe for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> Send for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> Sync for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> Unpin for HLSSPIMaster<D, A, W>
impl<const D: usize, const A: usize, const W: usize> UnwindSafe for HLSSPIMaster<D, A, W>
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