Type Alias UsbHw

Source
pub(crate) type UsbHw = Usbd<'static>;

Aliased Type§

struct UsbHw { /* private fields */ }

Implementations

Source§

impl<'a> Usbd<'a>

Source

pub const fn new() -> Usbd<'a>

Source

pub fn set_power_ref(&self, power: &'a Power<'a>)

Source

pub fn get_state(&self) -> UsbState

Source

pub fn enable_lowpower(&self)

Source

pub fn disable_lowpower(&self)

Source

pub fn handle_interrupt(&self)

Trait Implementations

Source§

impl PowerClient for Usbd<'_>

Source§

impl<'a> UsbController<'a> for Usbd<'a>

Source§

fn set_client(&self, client: &'a dyn Client<'a>)

Source§

fn endpoint_set_ctrl_buffer(&self, buf: &'a [VolatileCell<u8>])

Source§

fn endpoint_set_in_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])

Source§

fn endpoint_set_out_buffer(&self, endpoint: usize, buf: &'a [VolatileCell<u8>])

Source§

fn enable_as_device(&self, speed: DeviceSpeed)

Source§

fn attach(&self)

Source§

fn detach(&self)

Source§

fn set_address(&self, _addr: u16)

Source§

fn enable_address(&self)

Source§

fn endpoint_in_enable(&self, transfer_type: TransferType, endpoint: usize)

Source§

fn endpoint_out_enable(&self, transfer_type: TransferType, endpoint: usize)

Source§

fn endpoint_in_out_enable(&self, transfer_type: TransferType, endpoint: usize)

Source§

fn endpoint_resume_in(&self, endpoint: usize)

Source§

fn endpoint_resume_out(&self, endpoint: usize)