From ec984cc2bde161c92610b9ce724065651ba1d105 Mon Sep 17 00:00:00 2001 From: Natalia Portillo Date: Sat, 11 Jul 2020 19:21:50 +0100 Subject: [PATCH] Add field on device report for command F1h subommand 06h. --- Metadata/DeviceReportV2.cs | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Metadata/DeviceReportV2.cs b/Metadata/DeviceReportV2.cs index ff1709532..7ef9af649 100644 --- a/Metadata/DeviceReportV2.cs +++ b/Metadata/DeviceReportV2.cs @@ -1682,6 +1682,15 @@ namespace Aaru.CommonTypes.Metadata [DisplayName("Data from scrambled READ CD command")] public byte[] ReadCdScrambledData { get; set; } + [DisplayName("Can read from cache using F1h command subcommand 06h")] + public bool? CanReadF1_06 { get; set; } + [DisplayName("Can read from cache using F1h command subcommand 06h")] + public byte[] ReadF1_06Data { get; set; } + [DisplayName("Can read from cache using F1h command subcommand 06h targeting Lead-Out")] + public bool? CanReadF1_06LeadOut { get; set; } + [DisplayName("Can read from cache using F1h command subcommand 06h targeting Lead-Out")] + public byte[] ReadF1_06LeadOutData { get; set; } + [JsonIgnore] public int? AtaId { get; set; } [JsonIgnore]