Struct aw_fel::UsbHandle [] [src]

pub struct UsbHandle<'h> { /* fields omitted */ }

USB device handle.

Methods

impl<'h> UsbHandle<'h>
[src]

Fill memory at the given offset.

It will fill num_size bytes with the given byte.

Reads from the FEL device memory at the given offset.

It will fill all the given buffer, but it will panic if the buffer overflows total memory address space.

Writes to the FEL device memory at the given offset.

It will panic if the buffer overflows total memory address space.

Makes the FEL device execute the code at the given address.

Trait Implementations

impl<'h> Drop for UsbHandle<'h>
[src]

A method called when the value goes out of scope. Read more