aboutsummaryrefslogtreecommitdiff
path: root/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c
diff options
context:
space:
mode:
Diffstat (limited to 'thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c')
-rw-r--r--thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c158
1 files changed, 158 insertions, 0 deletions
diff --git a/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c b/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c
new file mode 100644
index 0000000..9979d19
--- /dev/null
+++ b/thirdparty/STM32_USB-FS-Device_Lib_V4.0.0/Projects/Composite_Example/src/scsi_data.c
@@ -0,0 +1,158 @@
+/**
+ ******************************************************************************
+ * @file scsi_data.c
+ * @author MCD Application Team
+ * @version V4.0.0
+ * @date 21-January-2013
+ * @brief Initialization of the SCSI data
+ ******************************************************************************
+ * @attention
+ *
+ * <h2><center>&copy; COPYRIGHT 2013 STMicroelectronics</center></h2>
+ *
+ * Licensed under MCD-ST Liberty SW License Agreement V2, (the "License");
+ * You may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at:
+ *
+ * http://www.st.com/software_license_agreement_liberty_v2
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ ******************************************************************************
+ */
+
+
+/* Includes ------------------------------------------------------------------*/
+#include "usb_scsi.h"
+#include "memory.h"
+
+
+uint8_t Page00_Inquiry_Data[] =
+ {
+ 0x00, /* PERIPHERAL QUALIFIER & PERIPHERAL DEVICE TYPE*/
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00 /* Supported Pages 00*/
+ };
+uint8_t Standard_Inquiry_Data[] =
+ {
+ 0x00, /* Direct Access Device */
+ 0x80, /* RMB = 1: Removable Medium */
+ 0x02, /* Version: No conformance claim to standard */
+ 0x02,
+
+ 36 - 4, /* Additional Length */
+ 0x00, /* SCCS = 1: Storage Controller Component */
+ 0x00,
+ 0x00,
+ /* Vendor Identification */
+ 'S', 'T', 'M', ' ', ' ', ' ', ' ', ' ',
+ /* Product Identification */
+ 'S', 'D', ' ', 'F', 'l', 'a', 's', 'h', ' ',
+ 'D', 'i', 's', 'k', ' ', ' ', ' ',
+ /* Product Revision Level */
+ '1', '.', '0', ' '
+ };
+uint8_t Standard_Inquiry_Data2[] =
+ {
+ 0x00, /* Direct Access Device */
+ 0x80, /* RMB = 1: Removable Medium */
+ 0x02, /* Version: No conformance claim to standard */
+ 0x02,
+
+ 36 - 4, /* Additional Length */
+ 0x00, /* SCCS = 1: Storage Controller Component */
+ 0x00,
+ 0x00,
+ /* Vendor Identification */
+ 'S', 'T', 'M', ' ', ' ', ' ', ' ', ' ',
+ /* Product Identification */
+ 'N', 'A', 'N', 'D', ' ', 'F', 'l', 'a', 's', 'h', ' ',
+ 'D', 'i', 's', 'k', ' ',
+ /* Product Revision Level */
+ '1', '.', '0', ' '
+ };
+/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+uint8_t Mode_Sense6_data[] =
+ {
+ 0x03,
+ 0x00,
+ 0x00,
+ 0x00,
+ };
+
+/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
+
+uint8_t Mode_Sense10_data[] =
+ {
+ 0x00,
+ 0x06,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00
+ };
+uint8_t Scsi_Sense_Data[] =
+ {
+ 0x70, /*RespCode*/
+ 0x00, /*SegmentNumber*/
+ NO_SENSE, /* Sens_Key*/
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00, /*Information*/
+ 0x0A, /*AdditionalSenseLength*/
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x00, /*CmdInformation*/
+ NO_SENSE, /*Asc*/
+ 0x00, /*ASCQ*/
+ 0x00, /*FRUC*/
+ 0x00, /*TBD*/
+ 0x00,
+ 0x00 /*SenseKeySpecific*/
+ };
+uint8_t ReadCapacity10_Data[] =
+ {
+ /* Last Logical Block */
+ 0,
+ 0,
+ 0,
+ 0,
+
+ /* Block Length */
+ 0,
+ 0,
+ 0,
+ 0
+ };
+
+uint8_t ReadFormatCapacity_Data [] =
+ {
+ 0x00,
+ 0x00,
+ 0x00,
+ 0x08, /* Capacity List Length */
+
+ /* Block Count */
+ 0,
+ 0,
+ 0,
+ 0,
+
+ /* Block Length */
+ 0x02,/* Descriptor Code: Formatted Media */
+ 0,
+ 0,
+ 0
+ };
+
+/************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/