1# ScsiPeripheral_BasicSenseInfo 2 3 4## Overview 5 6Basic information about the sense data. 7 8**Since**: 18 9 10**Related module**: [SCSI Peripheral DDK](_s_c_s_i.md) 11 12 13## Summary 14 15 16### Member Variables 17 18| Name| Description| 19| -------- | -------- | 20| uint8_t [responseCode](#responsecode) | Response code.| 21| bool [valid](#valid) | Information validity flag.| 22| uint64_t [information](#information) | **Information** field.| 23| uint64_t [commandSpecific](#commandspecific) | **Command-specific information** field.| 24| bool [sksv](#sksv) | **Sense key specific** field flag.| 25| uint32_t [senseKeySpecific](#sensekeyspecific) | **Sense key specific** field.| 26 27 28## Member Variable Description 29 30 31### commandSpecific 32 33``` 34uint64_t ScsiPeripheral_BasicSenseInfo::commandSpecific 35``` 36 37**Description** 38 39**Command-specific information** field. 40 41 42### information 43 44``` 45uint64_t ScsiPeripheral_BasicSenseInfo::information 46``` 47 48**Description** 49 50**Information** field. 51 52 53### responseCode 54 55``` 56uint8_t ScsiPeripheral_BasicSenseInfo::responseCode 57``` 58 59**Description** 60 61Response code. 62 63 64### senseKeySpecific 65 66``` 67uint32_t ScsiPeripheral_BasicSenseInfo::senseKeySpecific 68``` 69 70**Description** 71 72**Sense key specific** field. 73 74 75### sksv 76 77``` 78bool ScsiPeripheral_BasicSenseInfo::sksv 79``` 80 81**Description** 82 83**Sense key specific** field flag. 84 85 86### valid 87 88``` 89bool ScsiPeripheral_BasicSenseInfo::valid 90``` 91 92**Description** 93 94Information validity flag. 95