U盘实现——MSC 介绍

MSC 介绍

代码地址

代码地址

相关缩写

  • MSC:mass storage class 大容量存储类
  • BOT:bulk only transport 仅批量传输
  • UFI:USB floppy interface USB 软盘接口
  • SCSI:small computer system interface 小型计算机系统接口
  • CBW:command block wrapper 命令块封包
  • CSW:command status wrapper 命令状态封包

BOT 传输协议

BOT 即 bulk only transport ,在仅批量传输的结构和过程中,共分成三个阶段:命令阶段,数据阶段和状态阶段。

这和控制传输有点类似,但又不完全相同,这三个阶段均通过批量端点传输数据

命令阶段

命令阶段主要由主机通过批量输出端点发送一个 CBW 的数据,在 CBW 中定义了要操作的命令以及数据传输的方向和数量

CBW 命令格式

请添加图片描述

数据阶段

数据阶段的方向由命令阶段决定,数据阶段的数据格式也由 CBW 决定

状态阶段

状态阶段总是由设备返回该命令完成的状态即 CSW
CSW 命令格式

请添加图片描述

三个阶段转换流程

请添加图片描述

U 盘枚举过程几个重要的命令介绍

BOT 协议中较为重要的几个命令先简单做个介绍,具体命令如下:

  • INQUIRY Command:0x12
    • 查询命令,请求设备的一些基本信息
  • READD FORMAT CAPACITIES Command:0x23
    • 读格式化容量命令,读取设备各种可能的格式化容量
  • READD CAPACITY Command:0x25
    • 读容量命令,读取当前媒介的容量
  • MODE SENSE Command:0x1A
    • 模式查询命令,检测设备是否写保护
  • TEST UNIT READY Command:0x00
    • 单元测试命令,测试设备的某个逻辑单元是否准备好
  • READ(10) Command:0x28
    • 读命令,从磁盘读数据
  • WRITE(10) Command:0x2A
    • 写命令,往磁盘写数据

附 STM32 U 盘枚举日志

USBD init on controller 1
sizeof(usbd_device_t) = 43
sizeof(tu_fifo_t) = 12
sizeof(tu_edpt_stream_t) = 24
MSC init
USBD Bus Reset : Full Speed

USBD Setup Received 80 06 00 01 00 00 40 00 
  Get Descriptor Device
  Queue EP 80 with 18 bytes ...
USBD Xfer Complete on EP 80 with 18 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes
USBD Bus Reset : Full Speed

USBD Setup Received 00 05 05 00 00 00 00 00 
  Set Address
USBD Xfer Complete on EP 80 with 0 bytes

USBD Setup Received 80 06 00 01 00 00 12 00 
  Get Descriptor Device
  Queue EP 80 with 18 bytes ...
USBD Xfer Complete on EP 80 with 18 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 02 00 00 FF 00 
  Get Descriptor Configuration[0]
  Queue EP 80 with 32 bytes ...
USBD Xfer Complete on EP 80 with 32 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 03 03 09 04 FF 00 
  Get Descriptor String[3]
  Queue EP 80 with 26 bytes ...
USBD Xfer Complete on EP 80 with 26 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 03 00 00 FF 00 
  Get Descriptor String[0]
  Queue EP 80 with 4 bytes ...
USBD Xfer Complete on EP 80 with 4 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 02 03 09 04 FF 00 
  Get Descriptor String[2]
  Queue EP 80 with 30 bytes ...
USBD Xfer Complete on EP 80 with 30 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 06 00 00 0A 00 
  Get Descriptor Device Qualifier
get device qualifier
  Stall EP0
stall ep0

USBD Setup Received 80 06 00 01 00 00 12 00 
  Get Descriptor Device
  Queue EP 80 with 18 bytes ...
USBD Xfer Complete on EP 80 with 18 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 02 00 00 09 00 
  Get Descriptor Configuration[0]
  Queue EP 80 with 9 bytes ...
USBD Xfer Complete on EP 80 with 9 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 02 00 00 20 00 
  Get Descriptor Configuration[0]
  Queue EP 80 with 32 bytes ...
USBD Xfer Complete on EP 80 with 32 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 03 00 00 02 00 
  Get Descriptor String[0]
  Queue EP 80 with 2 bytes ...
USBD Xfer Complete on EP 80 with 2 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 00 03 00 00 04 00 
  Get Descriptor String[0]
  Queue EP 80 with 4 bytes ...
USBD Xfer Complete on EP 80 with 4 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 03 03 09 04 02 00 
  Get Descriptor String[3]
  Queue EP 80 with 2 bytes ...
USBD Xfer Complete on EP 80 with 2 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 03 03 09 04 1A 00 
  Get Descriptor String[3]
  Queue EP 80 with 26 bytes ...
USBD Xfer Complete on EP 80 with 26 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 00 09 01 00 00 00 00 00 
  Set Configuration
  Open EP 01 with Size = 64
  Open EP 81 with Size = 64
    Allocated 64 bytes at offset 3968  Queue EP 01 with 31 bytes ...
  MSC opened
  Bind EP 01 to driver id 0
  Bind EP 81 to driver id 0
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes

USBD Setup Received A1 FE 00 00 00 00 01 00 
  MSC control request
  MSC Get Max Lun
  Queue EP 80 with 1 bytes ...
USBD Xfer Complete on EP 80 with 1 bytes
  MSC control complete
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Inquiry
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0x24 0x0 0x0 0x0 0x80 0x0 0x6 0x12 0x0 0x0 0x0 0x24 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 36 bytes ...
USBD Xfer Complete on EP 81 with 36 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x50 0xd5 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Inquiry
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0x24 0x0 0x0 0x0 0x80 0x0 0x6 0x12 0x0 0x0 0x0 0x24 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 36 bytes ...
USBD Xfer Complete on EP 81 with 36 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x50 0xd5 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Format Capacity
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0xfc 0x0 0x0 0x0 0x80 0x0 0xa 0x23 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0xfc 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 12 bytes ...
USBD Xfer Complete on EP 81 with 12 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Inquiry
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0xff 0x0 0x0 0x0 0x80 0x0 0x6 0x12 0x1 0x80 0x0 0xff 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 36 bytes ...
USBD Xfer Complete on EP 81 with 36 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xf0 0xe2 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...

USBD Setup Received 80 06 00 03 00 00 FF 00 
  Get Descriptor String[0]
  Queue EP 80 with 4 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xf0 0xe2 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 80 with 4 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 01 03 09 04 FF 00 
  Get Descriptor String[1]
  Queue EP 80 with 16 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Mode_Sense 6
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0xc0 0x0 0x0 0x0 0x80 0x0 0x6 0x1a 0x0 0x1c 0x0 0xc0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 4 bytes ...
USBD Xfer Complete on EP 80 with 16 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 81 with 4 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 80 06 02 03 09 04 FF 00 
  Get Descriptor String[2]
  Queue EP 80 with 30 bytes ...
USBD Xfer Complete on EP 80 with 30 bytes
  Queue EP 00 with 0 bytes ...
USBD Xfer Complete on EP 00 with 0 bytes

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Mode_Sense 6
  cbw: 0x55 0x53 0x42 0x43 0x20 0x26 0xeb 0xf6 0xc0 0x0 0x0 0x0 0x80 0x0 0x6 0x1a 0x0 0x8 0x0 0xc0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 4 bytes ...
USBD Xfer Complete on EP 81 with 4 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x50 0xd5 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Inquiry
  cbw: 0x55 0x53 0x42 0x43 0x10 0x50 0xd5 0xfb 0x24 0x0 0x0 0x0 0x80 0x0 0x6 0x12 0x0 0x0 0x0 0x24 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 36 bytes ...
USBD Xfer Complete on EP 81 with 36 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x50 0xd5 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x20 0x26 0xeb 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x20 0x26 0xeb 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x80 0xbc 0xa 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x80 0xbc 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x55 0xc 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x70 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x70 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xc0 0x9e 0x1 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xc0 0x9e 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x10 0xcf 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x10 0xcf 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x60 0xbd 0xa 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x2 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x60 0xbd 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x20 0x26 0xeb 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x20 0x26 0xeb 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x10 0xcf 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x10 0xcf 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xf0 0xe2 0xfb 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xf0 0xe2 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0xa0 0xc1 0xfb 0x4 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0xa0 0xc1 0xfb 0x4 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Mode_Sense 6
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0xc0 0x0 0x0 0x0 0x80 0x0 0x6 0x1a 0x0 0x3f 0x0 0xc0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 4 bytes ...
USBD Xfer Complete on EP 81 with 4 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0xe0 0x9b 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xe0 0x9b 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x70 0xe2 0x77 0xf6 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x70 0xe2 0x77 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x55 0xc 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0xa0 0xc1 0xfb 0x4 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0xa0 0xc1 0xfb 0x4 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xf0 0xe2 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xf0 0xe2 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x20 0x26 0xeb 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x20 0x26 0xeb 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0xa0 0xc1 0xfb 0x4 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0xa0 0xc1 0xfb 0x4 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x70 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xf0 0xe2 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xf0 0xe2 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x10 0xcf 0xfb 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x10 0xcf 0xfb 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0xa0 0xc1 0xfb 0x4 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0xa0 0xc1 0xfb 0x4 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0x0 0x20 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x10 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x55 0xc 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0xc0 0xeb 0xf8 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xc0 0xeb 0xf8 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x0 0x10 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x8 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x60 0xbd 0xa 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x2 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x60 0xbd 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Mode_Sense 6
  cbw: 0x55 0x53 0x42 0x43 0x10 0xc0 0x9e 0x1 0xc0 0x0 0x0 0x0 0x80 0x0 0x6 0x1a 0x0 0x3f 0x0 0xc0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 4 bytes ...
USBD Xfer Complete on EP 81 with 4 bytes
  MSC xfer callback
  SCSI Data [Lun0]
    Stall EP 81

USBD Setup Received 02 01 00 00 81 00 00 00 
  Clear Feature
    Clear Stall EP 81
  MSC control request
clear feature
  Queue EP 81 with 13 bytes ...
  Queue EP 80 with 0 bytes ...
USBD Xfer Complete on EP 80 with 0 bytes
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x2 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0xf0 0x5e 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xf0 0x5e 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x0 0x2 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x80 0xbc 0xa 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x80 0xbc 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0xd0 0x87 0xba 0xf4 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0xd0 0x87 0xba 0xf4 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x2 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x55 0xc 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x60 0xbd 0xa 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x60 0xbd 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x20 0xb5 0xf9 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x20 0xb5 0xf9 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xc0 0x9e 0x1 0x0 0x20 0x0 0x0 0x80 0x0 0xa 0x28 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x10 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 512 bytes ...
USBD Xfer Complete on EP 81 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xc0 0x9e 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x80 0xbc 0xa 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x80 0xbc 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x5 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x70 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x60 0xbd 0xa 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x60 0xbd 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x10 0xc0 0x9e 0x1 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0xc0 0x9e 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x70 0xf6 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x70 0xf6 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Read Capacity10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x60 0xbd 0xa 0x8 0x0 0x0 0x0 0x80 0x0 0xa 0x25 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 8 bytes ...
USBD Xfer Complete on EP 81 with 8 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x60 0xbd 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x80 0xbc 0xa 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x80 0xbc 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x90 0x42 0x4f 0x5 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x4 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x90 0x42 0x4f 0x5 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x50 0x55 0xc 0x1 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x50 0x55 0xc 0x1 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Write10
  cbw: 0x55 0x53 0x42 0x43 0x10 0x80 0xbc 0xa 0x0 0x2 0x0 0x0 0x0 0x0 0xa 0x2a 0x0 0x0 0x0 0x0 0x1 0x0 0x0 0x1 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 01 with 512 bytes ...
USBD Xfer Complete on EP 01 with 512 bytes
  MSC xfer callback
  SCSI Data [Lun0]
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x80 0xbc 0xa 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...
USBD Xfer Complete on EP 01 with 31 bytes
  MSC xfer callback
  SCSI Command [Lun0]: Test Unit Ready
  cbw: 0x55 0x53 0x42 0x43 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 0x0 0x6 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 0x0 
  Queue EP 81 with 13 bytes ...
  csw: 0x55 0x53 0x42 0x53 0x10 0x90 0x6d 0x3 0x0 0x0 0x0 0x0 0x0 
USBD Xfer Complete on EP 81 with 13 bytes
  MSC xfer callback
  SCSI Status [Lun0] = 0
  Queue EP 01 with 31 bytes ...

猜你喜欢

转载自blog.csdn.net/tyustli/article/details/129827198
今日推荐