UsbControlSetup import { UsbControlSetup } from "destack:device/binding"; USB control transfer setup packet. export struct UsbControlSetup { requestType: UsbRequestType; recipient: UsbRecipient; request: uint8; value: uint16; index: uint16; } language/library/src/device/binding/usb.ds:172:183 Members requestType: UsbRequestType Request type. recipient: UsbRecipient Request recipient. request: uint8 Request number. value: uint16 Request value field. index: uint16 Request index field.