USBDeviceControlIn Method (Byte, Byte, Int32, Int32) |
Initiates a control transfer without a data stage over the default control endpoint. The request should have an IN direction (specified by the highest bit
of the requestType parameter). The setup packets' length member will be set to zero.
Namespace:
MadWizard.WinUSBNet
Assembly:
WinUSBNet (in WinUSBNet.dll) Version: 2.0.0.0 (2.0.0.0)
Syntax public void ControlIn(
byte requestType,
byte request,
int value,
int index
)
Public Sub ControlIn (
requestType As Byte,
request As Byte,
value As Integer,
index As Integer
)
public:
void ControlIn(
unsigned char requestType,
unsigned char request,
int value,
int index
)
Parameters
- requestType
- Type: SystemByte
The setup packet request type. The request type must specify the IN direction (highest bit set). - request
- Type: SystemByte
The setup packet device request. - value
- Type: SystemInt32
The value member in the setup packet. Its meaning depends on the request. Value should be between zero and 65535 (0xFFFF). - index
- Type: SystemInt32
The index member in the setup packet. Its meaning depends on the request. Index should be between zero and 65535 (0xFFFF).
See Also