aboutsummaryrefslogtreecommitdiffstats
path: root/Demos/Device/LowLevel/MassStorage/Lib
diff options
context:
space:
mode:
authorDean Camera <dean@fourwalledcubicle.com>2010-02-07 07:31:53 +0000
committerDean Camera <dean@fourwalledcubicle.com>2010-02-07 07:31:53 +0000
commit196724c62d8c09b30dabb9a8ff3246033d95315f (patch)
tree8653258b081df65de182502705e1475eb3ac51ce /Demos/Device/LowLevel/MassStorage/Lib
parent7602566a05616e55a943422c783e072b49cadb1d (diff)
downloadlufa-196724c62d8c09b30dabb9a8ff3246033d95315f.tar.gz
lufa-196724c62d8c09b30dabb9a8ff3246033d95315f.tar.bz2
lufa-196724c62d8c09b30dabb9a8ff3246033d95315f.zip
Added keyboard modifier masks (HID_KEYBOARD_MODIFER_*) to the HID class driver and Keyboard demos.
Diffstat (limited to 'Demos/Device/LowLevel/MassStorage/Lib')
-rw-r--r--Demos/Device/LowLevel/MassStorage/Lib/SCSI.h26
1 files changed, 13 insertions, 13 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h
index f983d2cf8..a9b5248e4 100644
--- a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h
+++ b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h
@@ -86,7 +86,7 @@
unsigned char _RESERVED1 : 7;
unsigned char Removable : 1;
- uint8_t Version;
+ uint8_t Version;
unsigned char ResponseDataFormat : 4;
unsigned char _RESERVED2 : 1;
@@ -94,8 +94,8 @@
unsigned char TrmTsk : 1;
unsigned char AERC : 1;
- uint8_t AdditionalLength;
- uint8_t _RESERVED3[2];
+ uint8_t AdditionalLength;
+ uint8_t _RESERVED3[2];
unsigned char SoftReset : 1;
unsigned char CmdQue : 1;
@@ -106,9 +106,9 @@
unsigned char WideBus32Bit : 1;
unsigned char RelAddr : 1;
- uint8_t VendorID[8];
- uint8_t ProductID[16];
- uint8_t RevisionID[4];
+ uint8_t VendorID[8];
+ uint8_t ProductID[16];
+ uint8_t RevisionID[4];
} SCSI_Inquiry_Response_t;
/** Type define for a SCSI sense structure to a SCSI REQUEST SENSE command. For details of the
@@ -126,13 +126,13 @@
unsigned char EOM : 1;
unsigned char FileMark : 1;
- uint8_t Information[4];
- uint8_t AdditionalLength;
- uint8_t CmdSpecificInformation[4];
- uint8_t AdditionalSenseCode;
- uint8_t AdditionalSenseQualifier;
- uint8_t FieldReplaceableUnitCode;
- uint8_t SenseKeySpecific[3];
+ uint8_t Information[4];
+ uint8_t AdditionalLength;
+ uint8_t CmdSpecificInformation[4];
+ uint8_t AdditionalSenseCode;
+ uint8_t AdditionalSenseQualifier;
+ uint8_t FieldReplaceableUnitCode;
+ uint8_t SenseKeySpecific[3];
} SCSI_Request_Sense_Response_t;
/* Function Prototypes: */