diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-19 08:29:08 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2009-08-19 08:29:08 +0000 |
commit | fa8beef82d1340a69390d4b11ca785ee016789c5 (patch) | |
tree | 1cfb23637c6e2d1c418ef2645b1ec394dff4cd48 /Demos/Device | |
parent | 32cc2b8d4d9f2c66a9dbfa859f476c077592e2cf (diff) | |
download | lufa-fa8beef82d1340a69390d4b11ca785ee016789c5.tar.gz lufa-fa8beef82d1340a69390d4b11ca785ee016789c5.tar.bz2 lufa-fa8beef82d1340a69390d4b11ca785ee016789c5.zip |
Moved out the handling of V2 Protocol parameters to a seperate set of files. Added parameter privellages, so that an error can be returned to the host when trying to perform a get/set value action on a parameter without the correct privellages.
Diffstat (limited to 'Demos/Device')
-rw-r--r-- | Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h index 5002df5d4..076328631 100644 --- a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h +++ b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h @@ -63,10 +63,10 @@ SenseData.AdditionalSenseQualifier = aqual; }MACROE
/** Macro for the SCSI_Command_ReadWrite_10() function, to indicate that data is to be read from the storage medium. */
- #define DATA_READ true
+ #define DATA_READ true
/** Macro for the SCSI_Command_ReadWrite_10() function, to indicate that data is to be written to the storage medium. */
- #define DATA_WRITE false
+ #define DATA_WRITE false
/** Value for the DeviceType entry in the SCSI_Inquiry_Response_t enum, indicating a Block Media device. */
#define DEVICE_TYPE_BLOCK 0x00
|