ControlTransfer (Class)¶
- class usbx.ControlTransfer(request_type: RequestType, recipient: Recipient, request: int, value: int, index: int)¶
USB control transfer request.
- index: int¶
Index (value between 0 and 65535, called
wIndexin USB specification).For requests with an interface or an endpoint as the recipient, the lower byte of this property must contain the interface number and the endpoint address, respectively.
- request: int¶
Request code (value between 0 and 255, called
bRequestin USB specification).
- request_type: RequestType¶
Request type (bits 5 and 6 of
bmRequestType).
- value: int¶
Value (value between 0 and 65535, called
wValuein USB specification).