mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Added ATA categories.
This commit is contained in:
@@ -1,3 +1,13 @@
|
|||||||
|
2016-02-07 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
|
* Device/AtaCommands/Ata28.cs:
|
||||||
|
* Device/AtaCommands/Ata48.cs:
|
||||||
|
* Device/AtaCommands/Smart.cs:
|
||||||
|
* Device/AtaCommands/Atapi.cs:
|
||||||
|
* DiscImageChef.Devices.csproj:
|
||||||
|
* Device/AtaCommands/AtaCHS.cs:
|
||||||
|
Added ATA categories.
|
||||||
|
|
||||||
2016-02-07 Natalia Portillo <claunia@claunia.com>
|
2016-02-07 Natalia Portillo <claunia@claunia.com>
|
||||||
|
|
||||||
* Device/AtaCommands.cs:
|
* Device/AtaCommands.cs:
|
||||||
|
|||||||
48
DiscImageChef.Devices/Device/AtaCommands/Ata28.cs
Normal file
48
DiscImageChef.Devices/Device/AtaCommands/Ata28.cs
Normal file
@@ -0,0 +1,48 @@
|
|||||||
|
// /***************************************************************************
|
||||||
|
// The Disc Image Chef
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Filename : Ata28.cs
|
||||||
|
// Version : 1.0
|
||||||
|
// Author(s) : Natalia Portillo
|
||||||
|
//
|
||||||
|
// Component : Component
|
||||||
|
//
|
||||||
|
// Revision : $Revision$
|
||||||
|
// Last change by : $Author$
|
||||||
|
// Date : $Date$
|
||||||
|
//
|
||||||
|
// --[ Description ] ----------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Description
|
||||||
|
//
|
||||||
|
// --[ License ] --------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2011-2015 Claunia.com
|
||||||
|
// ****************************************************************************/
|
||||||
|
// //$Id$
|
||||||
|
using System;
|
||||||
|
using DiscImageChef.Console;
|
||||||
|
using DiscImageChef.Decoders.ATA;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Devices
|
||||||
|
{
|
||||||
|
public partial class Device
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
47
DiscImageChef.Devices/Device/AtaCommands/Ata48.cs
Normal file
47
DiscImageChef.Devices/Device/AtaCommands/Ata48.cs
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
// /***************************************************************************
|
||||||
|
// The Disc Image Chef
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Filename : Ata48.cs
|
||||||
|
// Version : 1.0
|
||||||
|
// Author(s) : Natalia Portillo
|
||||||
|
//
|
||||||
|
// Component : Component
|
||||||
|
//
|
||||||
|
// Revision : $Revision$
|
||||||
|
// Last change by : $Author$
|
||||||
|
// Date : $Date$
|
||||||
|
//
|
||||||
|
// --[ Description ] ----------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Description
|
||||||
|
//
|
||||||
|
// --[ License ] --------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2011-2015 Claunia.com
|
||||||
|
// ****************************************************************************/
|
||||||
|
// //$Id$
|
||||||
|
using System;
|
||||||
|
using DiscImageChef.Console;
|
||||||
|
using DiscImageChef.Decoders.ATA;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Devices
|
||||||
|
{
|
||||||
|
public partial class Device
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
47
DiscImageChef.Devices/Device/AtaCommands/Smart.cs
Normal file
47
DiscImageChef.Devices/Device/AtaCommands/Smart.cs
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
// /***************************************************************************
|
||||||
|
// The Disc Image Chef
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Filename : Smart.cs
|
||||||
|
// Version : 1.0
|
||||||
|
// Author(s) : Natalia Portillo
|
||||||
|
//
|
||||||
|
// Component : Component
|
||||||
|
//
|
||||||
|
// Revision : $Revision$
|
||||||
|
// Last change by : $Author$
|
||||||
|
// Date : $Date$
|
||||||
|
//
|
||||||
|
// --[ Description ] ----------------------------------------------------------
|
||||||
|
//
|
||||||
|
// Description
|
||||||
|
//
|
||||||
|
// --[ License ] --------------------------------------------------------------
|
||||||
|
//
|
||||||
|
// This program is free software: you can redistribute it and/or modify
|
||||||
|
// it under the terms of the GNU General Public License as
|
||||||
|
// published by the Free Software Foundation, either version 3 of the
|
||||||
|
// License, or (at your option) any later version.
|
||||||
|
//
|
||||||
|
// This program is distributed in the hope that it will be useful,
|
||||||
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||||
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||||
|
// GNU General Public License for more details.
|
||||||
|
//
|
||||||
|
// You should have received a copy of the GNU General Public License
|
||||||
|
// along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
//
|
||||||
|
// ----------------------------------------------------------------------------
|
||||||
|
// Copyright (C) 2011-2015 Claunia.com
|
||||||
|
// ****************************************************************************/
|
||||||
|
// //$Id$
|
||||||
|
using System;
|
||||||
|
using DiscImageChef.Console;
|
||||||
|
using DiscImageChef.Decoders.ATA;
|
||||||
|
|
||||||
|
namespace DiscImageChef.Devices
|
||||||
|
{
|
||||||
|
public partial class Device
|
||||||
|
{
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -65,8 +65,11 @@
|
|||||||
<Compile Include="Device\ScsiCommands\HP.cs" />
|
<Compile Include="Device\ScsiCommands\HP.cs" />
|
||||||
<Compile Include="Device\ScsiCommands\Plasmon.cs" />
|
<Compile Include="Device\ScsiCommands\Plasmon.cs" />
|
||||||
<Compile Include="Device\ScsiCommands\SyQuest.cs" />
|
<Compile Include="Device\ScsiCommands\SyQuest.cs" />
|
||||||
<Compile Include="Device\AtaCommands\AtaCommands.cs" />
|
<Compile Include="Device\AtaCommands\AtaCHS.cs" />
|
||||||
<Compile Include="Device\AtaCommands\AtapiCommands.cs" />
|
<Compile Include="Device\AtaCommands\Atapi.cs" />
|
||||||
|
<Compile Include="Device\AtaCommands\Ata28.cs" />
|
||||||
|
<Compile Include="Device\AtaCommands\Ata48.cs" />
|
||||||
|
<Compile Include="Device\AtaCommands\Smart.cs" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
|||||||
Reference in New Issue
Block a user