Added SCSI MODE SENSE(6) and MODE SENSE(10) commands.

This commit is contained in:
2015-10-24 04:13:55 +01:00
parent 67dc2df4c1
commit 589452272c
3 changed files with 190 additions and 0 deletions

View File

@@ -2698,5 +2698,28 @@ namespace DiscImageChef.Devices
/// </summary>
ResetWritePointer = 0x04
}
/// <summary>
/// MODE SENSE page control, mask 0xC0
/// </summary>
public enum ScsiModeSensePageControl : byte
{
/// <summary>
/// Current values
/// </summary>
Current = 0x00,
/// <summary>
/// Changeable values
/// </summary>
Changeable = 0x40,
/// <summary>
/// Default values
/// </summary>
Default = 0x80,
/// <summary>
/// Saved values
/// </summary>
Saved = 0xC0
}
}