• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1# ScsiPeripheral_ReadCapacityRequest
2
3
4## 概述
5
6SCSI命令(read capacity)的请求结构体。
7
8**起始版本:** 18
9
10**相关模块:**[SCSI Peripheral DDK](_s_c_s_i.md)
11
12**所在头文件:** [scsi_peripheral_types.h](scsi__peripheral__types_8h.md)
13
14
15## 汇总
16
17
18### 成员变量
19
20| 名称 | 描述 |
21| -------- | -------- |
22| uint32_t [lbAddress](#lbaddress) | 逻辑单元地址。 |
23| uint8_t [control](#control) | Control字段,用于指定一些控制信息。 |
24| uint8_t [byte8](#byte8) | CDB的第八个字节。 |
25| uint32_t [timeout](#timeout) | 超时时间(单位:毫秒)。 |
26
27
28## 结构体成员变量说明
29
30
31### byte8
32
33```
34uint8_t ScsiPeripheral_ReadCapacityRequest::byte8
35```
36
37**描述**
38
39CDB的第八个字节。
40
41
42### control
43
44```
45uint8_t ScsiPeripheral_ReadCapacityRequest::control
46```
47
48**描述**
49
50Control字段,用于指定一些控制信息。
51
52
53### lbAddress
54
55```
56uint32_t ScsiPeripheral_ReadCapacityRequest::lbAddress
57```
58
59**描述**
60
61逻辑单元地址。
62
63
64### timeout
65
66```
67uint32_t ScsiPeripheral_ReadCapacityRequest::timeout
68```
69
70**描述**
71
72超时时间(单位:毫秒)。
73