Add information about Lite-On READ BUFFER (RAW) support on device report page.

This commit is contained in:
2025-04-27 12:19:15 +01:00
parent fbf192a8d1
commit d375226a6f
2 changed files with 9 additions and 0 deletions

View File

@@ -589,6 +589,12 @@ public partial class View
if(report.SCSI.ReadCapabilities.SupportsReadLong16 == true)
readCapabilitiesList.Add("Device supports READ LONG (16) command.");
if(report.SCSI.ReadCapabilities.SupportsHLDTSTReadRawDVD == true)
readCapabilitiesList.Add("Device supports reading RAW DVD data using HL-DT-ST vendor command");
if(report.SCSI.ReadCapabilities.SupportsLiteOnReadRawDVD == true)
readCapabilitiesList.Add("Device supports reading RAW DVD data using Lite-On READ BUFFER command");
if(readCapabilitiesList.Count > 0) ReadCapabilitiesList = readCapabilitiesList;
if(readCapabilitiesDictionary.Count > 0) ReadCapabilitiesDictionary = readCapabilitiesDictionary;
}

View File

@@ -272,6 +272,9 @@ public static class TestedMedia
if(testedMedia.SupportsHLDTSTReadRawDVD == true)
list.Add("Device can use the HL-DT-ST vendor READ DVD (RAW) command with this medium");
if(testedMedia.SupportsLiteOnReadRawDVD == true)
list.Add("Device can use the Lite-On READ BUFFER (RAW) command with this medium");
if(testedMedia.SupportsNECReadCDDA == true)
list.Add("Device can use the NEC vendor READ CD-DA command with this medium");