Struct usb_device::bus::UsbBusAllocator
source · [−]pub struct UsbBusAllocator<B: UsbBus> { /* private fields */ }
Expand description
Helper type used for UsbBus resource allocation and initialization.
Implementations
sourceimpl<B: UsbBus> UsbBusAllocator<B>
impl<B: UsbBus> UsbBusAllocator<B>
sourcepub fn new(bus: B) -> UsbBusAllocator<B>
pub fn new(bus: B) -> UsbBusAllocator<B>
Creates a new UsbBusAllocator
that wraps the provided UsbBus
. Usually only called by
USB driver implementations.
sourcepub fn interface(&self) -> InterfaceNumber
pub fn interface(&self) -> InterfaceNumber
Allocates a new interface number.
sourcepub fn string(&self) -> StringIndex
pub fn string(&self) -> StringIndex
Allocates a new string index.
sourcepub fn alloc<D: EndpointDirection>(
&self,
ep_addr: Option<EndpointAddress>,
ep_type: EndpointType,
max_packet_size: u16,
interval: u8
) -> Result<Endpoint<'_, B, D>>
pub fn alloc<D: EndpointDirection>(
&self,
ep_addr: Option<EndpointAddress>,
ep_type: EndpointType,
max_packet_size: u16,
interval: u8
) -> Result<Endpoint<'_, B, D>>
Allocates an endpoint with the specified direction and address.
This directly delegates to UsbBus::alloc_ep
, so see that method for details. In most
cases classes should call the endpoint type specific methods instead.
sourcepub fn control<D: EndpointDirection>(
&self,
max_packet_size: u16
) -> Endpoint<'_, B, D>
pub fn control<D: EndpointDirection>(
&self,
max_packet_size: u16
) -> Endpoint<'_, B, D>
Allocates a control endpoint.
This crate implements the control state machine only for endpoint 0. If classes want to support control requests in other endpoints, the state machine must be implemented manually. This should rarely be needed by classes.
Arguments
max_packet_size
- Maximum packet size in bytes. Must be one of 8, 16, 32 or 64.
Panics
Panics if endpoint allocation fails, because running out of endpoints or memory is not feasibly recoverable.
sourcepub fn bulk<D: EndpointDirection>(
&self,
max_packet_size: u16
) -> Endpoint<'_, B, D>
pub fn bulk<D: EndpointDirection>(
&self,
max_packet_size: u16
) -> Endpoint<'_, B, D>
sourcepub fn interrupt<D: EndpointDirection>(
&self,
max_packet_size: u16,
interval: u8
) -> Endpoint<'_, B, D>
pub fn interrupt<D: EndpointDirection>(
&self,
max_packet_size: u16,
interval: u8
) -> Endpoint<'_, B, D>
Allocates an interrupt endpoint.
max_packet_size
- Maximum packet size in bytes. Cannot exceed 64 bytes.
Panics
Panics if endpoint allocation fails, because running out of endpoints or memory is not feasibly recoverable.