diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-31 12:33:21 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2010-08-31 12:33:21 +0000 |
commit | 4dece08bef10a23a9702b6ddb67401400119cbce (patch) | |
tree | 732a5ec6107206be5d9562fc7a896a9f8fb56221 /Demos/Device/LowLevel/MassStorage/Lib | |
parent | 009eebf229a235cf090a4530908a8d34da36ba21 (diff) | |
download | lufa-4dece08bef10a23a9702b6ddb67401400119cbce.tar.gz lufa-4dece08bef10a23a9702b6ddb67401400119cbce.tar.bz2 lufa-4dece08bef10a23a9702b6ddb67401400119cbce.zip |
Clarify in the project documentation files what the each of the different USB AVR device "series" comprises of.
Diffstat (limited to 'Demos/Device/LowLevel/MassStorage/Lib')
-rw-r--r-- | Demos/Device/LowLevel/MassStorage/Lib/SCSI.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h index 7c6d91754..0fc99b618 100644 --- a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h +++ b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.h @@ -54,9 +54,9 @@ * is for convenience, as it allows for all three sense values (returned upon request to the host to give information about * the last command failure) in a quick and easy manner. * - * \param[in] key New SCSI sense key to set the sense code to - * \param[in] acode New SCSI additional sense key to set the additional sense code to - * \param[in] aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to + * \param[in] Key New SCSI sense key to set the sense code to + * \param[in] Acode New SCSI additional sense key to set the additional sense code to + * \param[in] Aqual New SCSI additional sense key qualifier to set the additional sense qualifier code to */ #define SCSI_SET_SENSE(Key, Acode, Aqual) MACROS{ SenseData.SenseKey = (Key); \ SenseData.AdditionalSenseCode = (Acode); \ |