diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-09 10:59:53 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-03-09 10:59:53 +0000 |
commit | e62e50c66360669d5e64d61f615d9b4ee24ca59f (patch) | |
tree | 3d67ef77a708abf849136a684e304aa88f7b35af /Demos/Device/LowLevel | |
parent | d5d83b8e8f8238114426a0ca4476062cdc765ea1 (diff) | |
download | lufa-e62e50c66360669d5e64d61f615d9b4ee24ca59f.tar.gz lufa-e62e50c66360669d5e64d61f615d9b4ee24ca59f.tar.bz2 lufa-e62e50c66360669d5e64d61f615d9b4ee24ca59f.zip |
Add dummy handler for SCSI_CMD_START_STOP_UNIT in all project SCSI handling routines, to prevent ejection errors on *nix systems due to an unknown SCSI command.
Diffstat (limited to 'Demos/Device/LowLevel')
-rw-r--r-- | Demos/Device/LowLevel/MassStorage/Lib/SCSI.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c index 01f378b26..f9e61a5fa 100644 --- a/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c +++ b/Demos/Device/LowLevel/MassStorage/Lib/SCSI.c @@ -114,6 +114,7 @@ bool SCSI_DecodeSCSICommand(void) case SCSI_CMD_MODE_SENSE_6: CommandSuccess = SCSI_Command_ModeSense_6(); break; + case SCSI_CMD_START_STOP_UNIT: case SCSI_CMD_TEST_UNIT_READY: case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL: case SCSI_CMD_VERIFY_10: |