[][src]Struct ffp::FPGA

pub struct FPGA<'a> { /* fields omitted */ }

FPGA manager

Methods

impl<'a> FPGA<'a>[src]

pub fn new(programmer: &'a Programmer) -> Self[src]

Create a new FPGA using the given Programmer

pub fn reset(&self) -> Result<()>[src]

Reset the attached FPGA

pub fn power_on(&self) -> Result<()>[src]

Enable target power

pub fn power_off(&self) -> Result<()>[src]

Disable target power

pub fn program(&self, data: &[u8]) -> Result<()>[src]

Program the attached FPGA with the provided bitstream

The FPGA will be reset and start executing after programming completion.

Auto Trait Implementations

impl<'a> RefUnwindSafe for FPGA<'a>

impl<'a> Send for FPGA<'a>

impl<'a> Sync for FPGA<'a>

impl<'a> Unpin for FPGA<'a>

impl<'a> UnwindSafe for FPGA<'a>

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.