Device¶
Contains the organizing hardware used to add USB3 Device functionality
to your own designs; including the core USBSuperSpeedDevice
class.
- class torii_usb.usb.usb3.device.USBSuperSpeedDevice(*args: Any, src_loc_at: int = 0, **kwargs: Any)¶
Core gateware common to all Torii-USB USB3 devices.
- add_endpoint(endpoint)¶
Adds an endpoint interface to the device.
- Parameters:
endpoint (Elaborateable) – The endpoint interface to be added. Can be any piece of gateware with a
EndpointInterface
attribute calledinterface
.
- add_standard_control_endpoint(descriptors: DeviceDescriptorCollection)¶
Adds a control endpoint with standard request handlers to the device.
- Parameters:
descriptors (DeviceDescriptorCollection) – The descriptors to use for this device.
value (Return)
------------
created. (The endpoint object)