V850E2/MN4 USB MSC (Mass Storage Class) Driver
R01AN0011EJ0102 Rev.1.02 Page 30 of 151
Jan 23, 2012
(6) INQUIRY command (0x12)
This command notifies the host of the configuration information and attributes of the device. The sample driver
sends the INQUIRY_TABLE values to the host.
Table 4.18 SEEK Command Format
Bit
Byte
7 6 5 4 3 2 1 0
0 Operation code (0x12)
1 Logical unit number (LUN) Reserved CMDDT EVPD
2 Page code
3 Reserved
4 Additional data length
5 Reserved Flag Link
Table 4.19 INQUIRY Data Format
Bit
Byte
7 6 5 4 3 2 1 0
0 Identifier Device type
1 RMB Device type qualifier
2 ISO version ECMA version ANSI version
3 AENC TmIOP Response data format
4 Additional data length (n – 4 bytes)
5-6 Reserved
7 RelAdr WBus32 WBus16 Sync Linked Reserved CmdQue SftRe
8–15 Vendor ID (ASCII string)
16-31 Product ID (ASCII string)
32-35 Product version (ASCII string)
36-55 Vendor specific information
56-95 Reserved
96-n Additional vendor specific information (data length variable)
UINT8 INQUIRY_TABLE[INQUIRY_LENGTH] =
{
0x00, /* Qualifier, device type code */
0x80, /* RMB, device type modification child */
0x02, /* ISO Version, ECMA Version, ANSI Version */
0x02, /* AENC, TrmIOP, response data form */
0x1F, /* addition data length */
0x00,0x00,0x00, /* reserved */
'R','e','n','e','s','a','s',' ', /* vender ID */
'S','t','o','r','a','g','e','F','n','c','D','r','i','v','e','r', /* product ID */
'0','.','0','1' /* Product Revision */
};
Figure 4.1 INQUIRY_TABLE