+ /* Get inquiry data from the device */\r
+ SCSI_Inquiry_Response_t InquiryData;\r
+ if ((ErrorCode = MassStore_Inquiry(0, &InquiryData)) != 0)\r
+ {\r
+ ShowDiskReadError(PSTR("Inquiry"), ErrorCode);\r
+ \r
+ USB_HostState = HOST_STATE_WaitForDeviceRemoval;\r
+ break;\r
+ }\r
+\r
+ /* Print vendor and product names of attached device */\r
+ printf_P(PSTR("Vendor \"%.8s\", Product \"%.16s\"\r\n"), InquiryData.VendorID, InquiryData.ProductID);\r
+ \r