* DiscImageChef.Decoders/ATA.cs:

* DiscImageChef.Decoders/DiscImageChef.Decoders.csproj:
	  Added structure for ATA/ATAPI IDENTIFY [PACKET] DEVICE
	  response

	* DiscImageChef.Devices/Enums.cs:
	  Added command clash in XML documentation
This commit is contained in:
2015-10-16 01:55:55 +01:00
parent 846be0d756
commit 6e7ed8e743
5 changed files with 1869 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -1,3 +1,10 @@
2015-10-16 Natalia Portillo <claunia@claunia.com>
* ATA.cs:
* DiscImageChef.Decoders.csproj:
Added structure for ATA/ATAPI IDENTIFY [PACKET] DEVICE
response
2015-10-13 Natalia Portillo <claunia@claunia.com>
* SCSI.cs:

View File

@@ -41,6 +41,7 @@
<Compile Include="Floppy.cs" />
<Compile Include="MMC.cs" />
<Compile Include="SCSI.cs" />
<Compile Include="ATA.cs" />
</ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup>

View File

@@ -1,3 +1,8 @@
2015-10-16 Natalia Portillo <claunia@claunia.com>
* Enums.cs:
Added command clash in XML documentation
2015-10-15 Natalia Portillo <claunia@claunia.com>
* Device/AtaCommands.cs:

View File

@@ -2254,6 +2254,7 @@ namespace DiscImageChef.Devices
#region ATA Command Pass-Through
/// <summary>
/// Sends a 24-bit ATA command to the device
/// Clashes with <see cref="Blank"/>
/// ATA CPT rev. 8a
/// </summary>
AtaPassThrough = 0xA1,