mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Implemented device-report command for MMC and SecureDigital devices.
This commit is contained in:
@@ -48,6 +48,8 @@ namespace DiscImageChef.Metadata
|
||||
public ataType ATA { get; set; }
|
||||
public ataType ATAPI { get; set; }
|
||||
public scsiType SCSI { get; set; }
|
||||
public mmcsdType MultiMediaCard { get; set; }
|
||||
public mmcsdType SecureDigital { get; set; }
|
||||
|
||||
[XmlIgnore]
|
||||
public bool CompactFlashSpecified { get; set; }
|
||||
@@ -1033,5 +1035,15 @@ namespace DiscImageChef.Metadata
|
||||
[XmlIgnore]
|
||||
public bool CardCodeSpecified { get; set; }
|
||||
}
|
||||
|
||||
[Serializable]
|
||||
public class mmcsdType
|
||||
{
|
||||
public byte[] CID { get; set; }
|
||||
public byte[] CSD { get; set; }
|
||||
public byte[] OCR { get; set; }
|
||||
public byte[] SCR { get; set; }
|
||||
public byte[] ExtendedCSD { get; set; }
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user