mirror of
https://github.com/aaru-dps/Aaru.Server.git
synced 2025-12-16 19:24:27 +00:00
* 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:
@@ -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
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user