* DiscImageChef.Decoders/SCSI/MMC/Features.cs:

Added code to separate features and the feature header.

	* DiscImageChef.Devices/Enums.cs:
	* DiscImageChef.Devices/Device/ScsiCommands.cs:
	  Added SCSI GET CONFIGURATION
This commit is contained in:
2015-11-01 20:06:24 +00:00
parent cfdbb92d44
commit dfb15d0e4f
5 changed files with 136 additions and 4 deletions

View File

@@ -2743,5 +2743,22 @@ namespace DiscImageChef.Devices
[Obsolete]
PreventAll = 0x03
}
public enum MmcGetConfigurationRt : byte
{
/// <summary>
/// Drive shall return the Feature Header and all Feature Descriptors
/// </summary>
All = 0x00,
/// <summary>
/// Drive shall return the Feature Header and current Feature Descriptors
/// </summary>
Current = 0x01,
/// <summary>
/// Drive shall return only the Feature Header with the chosen Feature Descriptor
/// </summary>
Single = 0x02,
Reserved = 0x03
}
}