Skip to content

Instantly share code, notes, and snippets.

@Konamiman
Last active June 28, 2021 07:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Konamiman/11af48d080c1456a9a6d9096225ed6a8 to your computer and use it in GitHub Desktop.
Save Konamiman/11af48d080c1456a9a6d9096225ed6a8 to your computer and use it in GitHub Desktop.
#define SETUP_COMMAND_SIZE 8
#define EP0_PIPE_SIZE 8
//CH376 pins to Arduino digital connections mapping
#define CH_RD 3
#define CH_WR 4
#define CH_PCS A0
#define CH_A0 13
#define CH_INT 2
#define CH_D0 5
#define CH_A0_DATA LOW
#define CH_A0_COMMAND HIGH
// CH372 USB modes
#define CH_USB_MODE_INVALID_DEVICE 0
#define CH_USB_MODE_DEVICE_EXTERNAL_FIRMWARE 1
// CH372 commands
#define GET_IC_VER 0x01
#define ENTER_SLEEP 0x03
#define RESET_ALL 0x05
#define CHECK_EXIST 0x06
#define GET_TOGGLE 0x0A
#define CHK_SUSPEND 0x0B
#define SET_USB_ID 0x12
#define SET_USB_ADDR 0x13
#define SET_ENDP2__RX_EP0 0x18
#define SET_ENDP3__TX_EP0 0x19
#define SET_ENDP4__RX_EP1 0x1A
#define SET_ENDP5__TX_EP1 0x1B
#define SET_ENDP6__RX_EP2 0x1C
#define SET_ENDP7__TX_EP3 0x1D
#define SET_USB_MODE 0x15
#define GET_STATUS 0x22
#define UNLOCK_USB 0x23
#define RD_USB_DATA0 0x27
#define RD_USB_DATA 0x28
#define WR_USB_DATA3__EP0 0x29
#define WR_USB_DATA5__EP1 0x2A
#define WR_USB_DATA7__EP2 0x2B
// CH372 operation status
#define CMD_RET_SUCCESS 0x51
#define CMD_RET_ABORT 0x5F
// CH372 interruption status
#define USB_BUS_RESET 0x03
#define USB_BUS_RESET_MASK 0x03
#define USB_INT_EP0_SETUP 0x0C
#define USB_INT_EP0_OUT 0x00
#define USB_INT_EP0_IN 0x08
#define USB_INT_EP1_OUT 0x01
#define USB_INT_EP1_IN 0x09
#define USB_INT_EP2_OUT 0x02
#define USB_INT_EP2_IN 0x0A
#define USB_INT_USB_SUSPEND 0x05
#define USB_INT_WAKE_UP 0x06
// Constants for setting endpoint work mode
#define SET_ENDP_NAK 14
#define SET_ENDP_STALL 15
#define SET_ENDP_RX 0
#define SET_ENDP_TX 1
// Constants for examining SETUP requests
#define BM_REQ_TYPE_MASK 0x60
#define BM_REQ_TYPE_STD 0
// USB descriptor codes
#define USB_DESC_DEVICE 1
#define USB_DESC_CONFIGURATION 2
#define USB_DESC_STRING 3
#define USB_DESC_INTERFACE 4
#define USB_DESC_ENDPOINT = 5
// USB string descriptor ids
#define STRING_DESC_MANUFACTURER 1
#define STRING_DESC_PRODUCT 2
// USB requests
// IN
#define USB_REQ_GET_CONFIGURATION 8
#define USB_REQ_GET_DESCRIPTOR 6
#define USB_REQ_GET_INTERFACE 10
#define USB_REQ_GET_STATUS 0
//OUT
#define USB_REQ_CLEAR_FEATURE 1
#define USB_REQ_SET_ADDRESS 5
#define USB_REQ_SET_CONFIGURATION 9
#define USB_REQ_SET_FEATURE 3
/**
* Skeleton for a USB device implementation with a CH372/375/376.
*
* No real device functionality is implemented,
* only the standard USB requests over the control endpoint.
*/
#include "constants.h"
/*************
* Variables *
*************/
bool unlocked;
bool handlingSetupRequest;
byte* dataToTransfer;
int dataToTransferIndex;
int dataLeftToTransfer;
bool sendingData;
byte addressToSet;
bool configured;
void ResetState()
{
handlingSetupRequest = false;
dataLeftToTransfer = 0;
addressToSet = 0;
configured = false;
}
/*******************
* Descriptor data *
*******************/
byte deviceDescriptor[] = {
0x12, //Length
USB_DESC_DEVICE,
0x10, 0x01, //USB version,
0x00, 0x00, 0x00, //Class, subclass, protocol
EP0_PIPE_SIZE, //Max packet size for EP0
0x09, 0x12, //VID (https://pid.codes)
0x02, 0x00, //PID (testing)
0x00, 0x01, //Device release number
STRING_DESC_MANUFACTURER, //Manufacturer string id
STRING_DESC_PRODUCT, //Product string id
0x00, //Serial number string id
0x01 //Number of configurations
};
byte configurationDescriptor[] = {
0x09, //Length
USB_DESC_CONFIGURATION,
0x12, 0x00, //Total length
0x01, //Number of interfaces
0x01, //Configuration value
0x00, //String descriptor for configuration
0x80, //Attributes (no self-powered, no remote wake-up)
50, //Max power (100mA)
//Interface descriptor
0x09, //Length
USB_DESC_INTERFACE,
0x00, //Interface number
0x00, //Alternate setting
0x00, //Number of endpoints
0xFF, 0xFF, 0xFF, //Class, subclass, protocol
STRING_DESC_PRODUCT //String descriptor for interface
};
byte languagesDescriptor[] = {
0x04, //Length
USB_DESC_STRING,
0x09, 0x04 //English (US)
};
byte productStringDescriptor[] = {
0x1A, //length,
USB_DESC_STRING,
//"NestorDevice"
0x4E, 0x00, 0x65, 0x00, 0x73, 0x00, 0x74, 0x00, 0x6F, 0x00,
0x72, 0x00, 0x44, 0x00, 0x65, 0x00, 0x76, 0x00, 0x69, 0x00,
0x63, 0x00, 0x65, 0x00
};
byte manufacturerStringDescriptor[] = {
0x2A, //length,
USB_DESC_STRING,
//"Konamiman Industries"
0x4B, 0x00, 0x6F, 0x00, 0x6E, 0x00, 0x61, 0x00, 0x6D, 0x00,
0x69, 0x00, 0x6D, 0x00, 0x61, 0x00, 0x6E, 0x00, 0x20, 0x00,
0x49, 0x00, 0x6E, 0x00, 0x64, 0x00, 0x75, 0x00, 0x73, 0x00,
0x74, 0x00, 0x72, 0x00, 0x69, 0x00, 0x65, 0x00, 0x73, 0x00
};
byte oneOneByte[] = {1};
byte oneZeroByte[] = {0};
byte twoZeroBytes[] = {0,0};
/****************
* setup & loop *
****************/
void setup()
{
printf_begin();
Serial.begin(115200);
ResetState();
SetPins();
bool initOk = CH376Init();
if(initOk) {
attachInterrupt(digitalPinToInterrupt(CH_INT), HandleInterrupt, FALLING);
}
}
void loop()
{
/*
As an alternative to the "attachInterrupt" call in setup,
the following code can be used in loop:
if((CH_ReadStatus() & 0x80) == 0)
HandleInterrupt();
*/
}
/************************
* USB protocol handler *
************************/
void HandleInterrupt()
{
unlocked = false;
CH_WriteCommand(GET_STATUS);
byte interruptType = CH_ReadData();
if((interruptType & USB_BUS_RESET_MASK) == USB_BUS_RESET) {
interruptType = USB_BUS_RESET;
}
PrintInterruptName(interruptType);
switch(interruptType)
{
case USB_INT_USB_SUSPEND:
CH_WriteCommand(ENTER_SLEEP);
ResetState();
break;
case USB_BUS_RESET:
ResetState();
break;
case USB_INT_EP0_SETUP:
HandleSetupToken();
break;
case USB_INT_EP0_IN:
HandleControlInToken();
break;
case USB_INT_EP0_OUT:
//Nothing to do since we don't implement
//control OUT requests. We're going to receive
//this interrupt only as the status phase of IN requests,
//where there will be no data received.
handlingSetupRequest = false;
break;
}
if(!unlocked && interruptType != USB_INT_USB_SUSPEND) {
CH_WriteCommand(UNLOCK_USB);
}
}
void HandleSetupToken()
{
CH_WriteCommand(RD_USB_DATA0);
byte length = CH_ReadData();
if(length != SETUP_COMMAND_SIZE) {
SetEndpoint(0, SET_ENDP_TX, SET_ENDP_STALL);
printf(" *** Bad setup data length: %i\r\n", length);
return;
}
byte requestBytes[SETUP_COMMAND_SIZE];
printf(" ");
for(int i=0; i<SETUP_COMMAND_SIZE; i++) {
requestBytes[i] = CH_ReadData();
printf("0x%02X ", requestBytes[i]);
}
printf("\r\n");
byte bmRequestType = requestBytes[0];
byte bRequest = requestBytes[1];
int wValue = requestBytes[2] + (requestBytes[3] << 8);
int wIndex = requestBytes[4] + (requestBytes[5] << 8);
int wLength = requestBytes[6] + (requestBytes[7] << 8);
printf(" bRequest: %i\r\n", bRequest);
printf(" wValue: 0x%04X\r\n", wValue);
printf(" wIndex: 0x%04X\r\n", wIndex);
printf(" wLength: 0x%04X\r\n", wLength);
if((bmRequestType & BM_REQ_TYPE_MASK) != BM_REQ_TYPE_STD) {
printf(" *** Non-standard request, unsupported\r\n", length);
SetEndpoint(0, SET_ENDP_TX, SET_ENDP_STALL);
return;
}
sendingData = (bitRead(bmRequestType, 7) == 1);
dataToTransferIndex = 0;
if(sendingData) {
dataLeftToTransfer = PrepareControlDataToSend(bRequest, wValue);
if(dataLeftToTransfer == 0) {
printf(" *** Unsupported IN request\r\n", length);
SetEndpoint(0, SET_ENDP_TX, SET_ENDP_STALL);
}
else {
dataLeftToTransfer = min(dataLeftToTransfer, wLength);
byte amountToSendNow = min(dataLeftToTransfer, EP0_PIPE_SIZE);
WriteDataForEndpoint0(amountToSendNow);
}
}
else {
SetEndpoint(0, SET_ENDP_TX, 0);
dataLeftToTransfer = 0;
bool ok = ActOnOutputRquest(bRequest, wValue);
if(!ok) {
printf(" *** Unsupported OUT request: %i\r\n", bRequest);
SetEndpoint(0, SET_ENDP_TX, SET_ENDP_STALL);
}
}
handlingSetupRequest = (dataLeftToTransfer > 0);
}
void WriteDataForEndpoint0(byte amount)
{
printf(" Writing %i bytes: ", amount);
CH_WriteCommand(WR_USB_DATA3__EP0);
CH_WriteData(amount);
for(int i=0; i<amount; i++) {
printf("0x%02X ", dataToTransfer[dataToTransferIndex+i]);
CH_WriteData(dataToTransfer[dataToTransferIndex+i]);
}
printf("\r\n");
dataToTransferIndex += amount;
dataLeftToTransfer -= amount;
}
int PrepareControlDataToSend(byte bRequest, int wValue)
{
switch(bRequest) {
case USB_REQ_GET_INTERFACE:
printf(" GET_INTERFACE\r\n");
dataToTransfer = oneOneByte;
return 1;
case USB_REQ_GET_CONFIGURATION:
printf(" GET_CONFIGURATION\r\n");
dataToTransfer = configured ? oneOneByte : oneZeroByte;
return 1;
case USB_REQ_GET_STATUS:
printf(" GET_STATUS\r\n");
dataToTransfer = twoZeroBytes;
return 2;
case USB_REQ_GET_DESCRIPTOR:
printf(" GET_DESCRIPTOR: ");
byte descriptorType = highByte(wValue);
switch(descriptorType)
{
case USB_DESC_DEVICE:
printf("DEVICE\r\n");
dataToTransfer = deviceDescriptor;
return sizeof(deviceDescriptor);
case USB_DESC_CONFIGURATION:
printf("CONFIGURATION\r\n");
dataToTransfer = configurationDescriptor;
return sizeof(configurationDescriptor);
case USB_DESC_STRING:
printf("STRING: ");
byte stringIndex = lowByte(wValue);
switch(stringIndex)
{
case 0:
printf("Language\r\n");
dataToTransfer = languagesDescriptor;
return sizeof(languagesDescriptor);
case STRING_DESC_PRODUCT:
printf("Product\r\n");
dataToTransfer = productStringDescriptor;
return sizeof(productStringDescriptor);
case STRING_DESC_MANUFACTURER:
printf("Manufacturer\r\n");
dataToTransfer = manufacturerStringDescriptor;
return sizeof(manufacturerStringDescriptor);
default:
printf("Unknown! (%i)\r\n", stringIndex);
return 0;
}
default:
printf("Unknown! (%i)\r\n", descriptorType);
return 0;
}
default:
printf(" Unsupported request! (0x%02X)\r\n", bRequest);
return 0;
}
}
bool ActOnOutputRquest(byte bRequest, int wValue)
{
switch(bRequest)
{
case USB_REQ_SET_ADDRESS:
addressToSet = lowByte(wValue);
printf(" SET_ADDRESS: %i\r\n", addressToSet);
return true;
case USB_REQ_SET_CONFIGURATION:
printf(" SET_CONFIGURATION: 0x%04X\r\n", wValue);
configured = (wValue != 0);
return true;
}
return false;
}
void HandleControlInToken()
{
if(addressToSet != 0) {
printf(" Setting address: %i\r\n", addressToSet);
CH_WriteCommand(SET_USB_ADDR);
CH_WriteData(addressToSet);
addressToSet = 0;
return;
}
if(handlingSetupRequest && sendingData) {
byte amountToSendNow = min(dataLeftToTransfer, EP0_PIPE_SIZE);
WriteDataForEndpoint0(amountToSendNow);
if(dataLeftToTransfer == 0) {
handlingSetupRequest = false;
}
}
}
void SetEndpoint(int endpointNumber, int rxOrTx, int sizeOrStatus)
{
byte cmd = SET_ENDP2__RX_EP0 + 2 * endpointNumber + rxOrTx;
CH_WriteCommand(cmd);
CH_WriteData(sizeOrStatus);
}
void Unlock()
{
CH_WriteCommand(UNLOCK_USB);
unlocked = true;
}
/**********************
* CH376 reset & init *
**********************/
void SetPins()
{
pinMode(CH_RD, OUTPUT);
pinMode(CH_WR, OUTPUT);
pinMode(CH_PCS, OUTPUT);
pinMode(CH_A0, OUTPUT);
digitalWrite(CH_PCS, HIGH);
digitalWrite(CH_RD, HIGH);
digitalWrite(CH_WR, HIGH);
}
bool CH376Init()
{
CH_WriteCommand(RESET_ALL);
delay(50);
CH_WriteCommand(CHECK_EXIST);
CH_WriteData(0x57);
byte data = CH_ReadData();
if(data != 0xA8) {
// For some reason the first check always fails
CH_WriteData(0x57);
byte data = CH_ReadData();
if(data != 0xA8) {
printf("*** CH372 hardware not found! (0x57 --> 0x%02X)\r\n", data);
return false;
}
}
CH_WriteCommand(SET_USB_MODE);
CH_WriteData(CH_USB_MODE_INVALID_DEVICE);
delay(1);
if (CH_ReadData() != CMD_RET_SUCCESS) {
printf("*** CH372 set mode %i failed\r\n", CH_USB_MODE_INVALID_DEVICE);
return false;
}
CH_WriteCommand(SET_USB_MODE);
CH_WriteData(CH_USB_MODE_DEVICE_EXTERNAL_FIRMWARE);
delay(1);
if (CH_ReadData() != CMD_RET_SUCCESS) {
printf("*** CH372 set mode %i failed\r\n", CH_USB_MODE_DEVICE_EXTERNAL_FIRMWARE);
return false;
}
CH_WriteCommand(CHK_SUSPEND);
CH_WriteData(0x10);
CH_WriteData(0x04);
printf("CH372 initialized!\r\n");
return true;
}
/*********************************
* Low-level access to the CH372 *
*********************************/
byte CH_ReadData()
{
return CH_ReadPort(CH_A0_DATA);
}
byte CH_ReadStatus()
{
return CH_ReadPort(CH_A0_COMMAND);
}
byte CH_ReadPort(int address)
{
byte data = 0;
digitalWrite(CH_A0, address);
for (int i = 0; i < 8; i++)
{
pinMode(CH_D0 + i, INPUT);
digitalWrite(CH_D0 + i, LOW);
}
digitalWrite(CH_PCS, LOW);
digitalWrite(CH_RD, LOW);
for (int i = 0; i < 8; i++)
{
data >>= 1;
data |= (digitalRead(CH_D0 + i) == HIGH) ? 128 : 0;
}
digitalWrite(CH_RD, HIGH);
digitalWrite(CH_PCS, HIGH);
return data;
}
byte CH_WriteData(byte data)
{
return CH_WritePort(CH_A0_DATA, data);
}
byte CH_WriteCommand(byte command)
{
return CH_WritePort(CH_A0_COMMAND, command);
}
byte CH_WritePort(int address, byte data)
{
digitalWrite(CH_A0, address);
for (int i = 0; i < 8; i++)
{
pinMode(CH_D0 + i, OUTPUT);
}
digitalWrite(CH_PCS, LOW);
digitalWrite(CH_WR, LOW);
for (int i = 0; i < 8; i++)
{
digitalWrite(CH_D0 + i, (((data >> i) & 1) == 0) ? LOW : HIGH);
}
digitalWrite(CH_WR, HIGH);
digitalWrite(CH_PCS, HIGH);
return data;
}
/**********************************
* Redirect printf to serial port *
**********************************/
//https://forum.arduino.cc/t/printf-to-the-serial-port/333975/4
int serial_putc( char c, FILE * )
{
Serial.write( c );
return c;
}
void printf_begin(void)
{
fdevopen( &serial_putc, 0 );
}
/*****************
* Debug helpers *
*****************/
void PrintInterruptName( byte interruptCode)
{
char* name = NULL;
switch(interruptCode) {
case USB_BUS_RESET:
name = "BUS_RESET";
break;
case USB_INT_EP0_SETUP:
name = "EP0_SETUP";
break;
case USB_INT_EP0_OUT:
name = "EP0_OUT";
break;
case USB_INT_EP0_IN:
name = "EP0_IN";
break;
case USB_INT_EP1_OUT:
name = "EP1_OUT";
break;
case USB_INT_EP1_IN:
name = "EP1_IN";
break;
case USB_INT_EP2_OUT:
name = "EP2_OUT";
break;
case USB_INT_EP2_IN:
name = "EP2_IN";
break;
case USB_INT_USB_SUSPEND:
name = "USB_SUSPEND";
break;
case USB_INT_WAKE_UP:
name = "WAKE_UP";
break;
}
if(name == NULL) {
printf("Unknown interrupt received: 0x%02X\r\n", interruptCode);
}
else {
printf("Int: %s\r\n", name);
}
}
No. Time Source Destination Protocol Length Info
2023 11.025149 host 3.35.0 USB 36 GET DESCRIPTOR Request DEVICE
Frame 2023: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface wireshark_extcap1960, id 2
Interface id: 2 (wireshark_extcap1960)
Interface name: wireshark_extcap1960
Encapsulation type: USB packets with USBPcap header (152)
Arrival Time: Jun 22, 2021 10:18:29.003672000 Romance Daylight Time
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1624349909.003672000 seconds
[Time delta from previous captured frame: 0.005522000 seconds]
[Time delta from previous displayed frame: 0.000000000 seconds]
[Time since reference or first frame: 11.025149000 seconds]
Frame Number: 2023
Frame Length: 36 bytes (288 bits)
Capture Length: 36 bytes (288 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: usb]
USB URB
[Source: host]
[Destination: 3.35.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffc88f6ffd24b0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
0000 000. = Reserved: 0x00
.... ...0 = Direction: FDO -> PDO (0x0)
URB bus id: 3
Device address: 35
Endpoint: 0x80, Direction: IN
1... .... = Direction: IN (1)
.... 0000 = Endpoint number: 0
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 2031]
Control transfer stage: Setup (0)
Setup Data
bmRequestType: 0x80
1... .... = Direction: Device-to-host
.00. .... = Type: Standard (0x0)
...0 0000 = Recipient: Device (0x00)
bRequest: GET DESCRIPTOR (6)
Descriptor Index: 0x00
bDescriptorType: DEVICE (0x01)
Language Id: no language specified (0x0000)
wLength: 18
No. Time Source Destination Protocol Length Info
2031 11.048888 3.35.0 host USB 46 GET DESCRIPTOR Response DEVICE
Frame 2031: 46 bytes on wire (368 bits), 46 bytes captured (368 bits) on interface wireshark_extcap1960, id 2
Interface id: 2 (wireshark_extcap1960)
Interface name: wireshark_extcap1960
Encapsulation type: USB packets with USBPcap header (152)
Arrival Time: Jun 22, 2021 10:18:29.027411000 Romance Daylight Time
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1624349909.027411000 seconds
[Time delta from previous captured frame: 0.000677000 seconds]
[Time delta from previous displayed frame: 0.023739000 seconds]
[Time since reference or first frame: 11.048888000 seconds]
Frame Number: 2031
Frame Length: 46 bytes (368 bits)
Capture Length: 46 bytes (368 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: usb]
USB URB
[Source: 3.35.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffc88f6ffd24b0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
0000 000. = Reserved: 0x00
.... ...1 = Direction: PDO -> FDO (0x1)
URB bus id: 3
Device address: 35
Endpoint: 0x80, Direction: IN
1... .... = Direction: IN (1)
.... 0000 = Endpoint number: 0
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 18
[Request in: 2023]
[Time from request: 0.023739000 seconds]
Control transfer stage: Complete (3)
DEVICE DESCRIPTOR
bLength: 18
bDescriptorType: 0x01 (DEVICE)
bcdUSB: 0x0110
bDeviceClass: Device (0x00)
bDeviceSubClass: 0
bDeviceProtocol: 0 (Use class code info from Interface Descriptors)
bMaxPacketSize0: 8
idVendor: Generic (0x1209)
idProduct: pid.codes Test PID (0x0002)
bcdDevice: 0x0100
iManufacturer: 1
iProduct: 2
iSerialNumber: 0
bNumConfigurations: 1
No. Time Source Destination Protocol Length Info
2032 11.048968 host 3.35.0 USB 36 GET DESCRIPTOR Request CONFIGURATION
Frame 2032: 36 bytes on wire (288 bits), 36 bytes captured (288 bits) on interface wireshark_extcap1960, id 2
Interface id: 2 (wireshark_extcap1960)
Interface name: wireshark_extcap1960
Encapsulation type: USB packets with USBPcap header (152)
Arrival Time: Jun 22, 2021 10:18:29.027491000 Romance Daylight Time
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1624349909.027491000 seconds
[Time delta from previous captured frame: 0.000080000 seconds]
[Time delta from previous displayed frame: 0.000080000 seconds]
[Time since reference or first frame: 11.048968000 seconds]
Frame Number: 2032
Frame Length: 36 bytes (288 bits)
Capture Length: 36 bytes (288 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: usb]
USB URB
[Source: host]
[Destination: 3.35.0]
USBPcap pseudoheader length: 28
IRP ID: 0xffffc88f6ffd24b0
IRP USBD_STATUS: USBD_STATUS_SUCCESS (0x00000000)
URB Function: URB_FUNCTION_GET_DESCRIPTOR_FROM_DEVICE (0x000b)
IRP information: 0x00, Direction: FDO -> PDO
0000 000. = Reserved: 0x00
.... ...0 = Direction: FDO -> PDO (0x0)
URB bus id: 3
Device address: 35
Endpoint: 0x80, Direction: IN
1... .... = Direction: IN (1)
.... 0000 = Endpoint number: 0
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 8
[Response in: 3368]
Control transfer stage: Setup (0)
Setup Data
bmRequestType: 0x80
1... .... = Direction: Device-to-host
.00. .... = Type: Standard (0x0)
...0 0000 = Recipient: Device (0x00)
bRequest: GET DESCRIPTOR (6)
Descriptor Index: 0x00
bDescriptorType: CONFIGURATION (0x02)
Language Id: no language specified (0x0000)
wLength: 9
No. Time Source Destination Protocol Length Info
3368 16.052907 3.35.0 host USB 28 GET DESCRIPTOR Response
Frame 3368: 28 bytes on wire (224 bits), 28 bytes captured (224 bits) on interface wireshark_extcap1960, id 2
Interface id: 2 (wireshark_extcap1960)
Interface name: wireshark_extcap1960
Encapsulation type: USB packets with USBPcap header (152)
Arrival Time: Jun 22, 2021 10:18:34.031430000 Romance Daylight Time
[Time shift for this packet: 0.000000000 seconds]
Epoch Time: 1624349914.031430000 seconds
[Time delta from previous captured frame: 0.015473000 seconds]
[Time delta from previous displayed frame: 5.003939000 seconds]
[Time since reference or first frame: 16.052907000 seconds]
Frame Number: 3368
Frame Length: 28 bytes (224 bits)
Capture Length: 28 bytes (224 bits)
[Frame is marked: False]
[Frame is ignored: False]
[Protocols in frame: usb]
USB URB
[Source: 3.35.0]
[Destination: host]
USBPcap pseudoheader length: 28
IRP ID: 0xffffc88f6ffd24b0
IRP USBD_STATUS: USBD_STATUS_CANCELED (0xc0010000)
URB Function: URB_FUNCTION_CONTROL_TRANSFER (0x0008)
IRP information: 0x01, Direction: PDO -> FDO
0000 000. = Reserved: 0x00
.... ...1 = Direction: PDO -> FDO (0x1)
URB bus id: 3
Device address: 35
Endpoint: 0x80, Direction: IN
1... .... = Direction: IN (1)
.... 0000 = Endpoint number: 0
URB transfer type: URB_CONTROL (0x02)
Packet Data Length: 0
[Request in: 2032]
[Time from request: 5.003939000 seconds]
Control transfer stage: Complete (3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment