|
@@ -1,4 +1,4 @@
|
|
|
-/* Copyright (C) 2012-2016 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
+/* Copyright (C) 2012-2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
|
|
|
*
|
|
|
* You can redistribute this program and/or modify it under the terms of
|
|
|
* the GNU Lesser Public License as published by the Free Software Foundation,
|
|
@@ -14,7 +14,7 @@ namespace SCSI
|
|
|
public class UnitSerialNumberVPDPage
|
|
|
{
|
|
|
public byte PeripheralQualifier;
|
|
|
- public byte PeripheralDeviceType;
|
|
|
+ public PeripheralDeviceType PeripheralDeviceType;
|
|
|
public VitalProductDataPageName PageCode; // VitalProductDataPageName
|
|
|
public byte PageLength;
|
|
|
public string ProductSerialNumber;
|
|
@@ -27,7 +27,7 @@ namespace SCSI
|
|
|
public UnitSerialNumberVPDPage(byte[] buffer, int offset)
|
|
|
{
|
|
|
PeripheralQualifier = (byte)(buffer[offset + 0] >> 5);
|
|
|
- PeripheralDeviceType = (byte)(buffer[offset + 0] & 0x1F);
|
|
|
+ PeripheralDeviceType = (PeripheralDeviceType)(buffer[offset + 0] & 0x1F);
|
|
|
PageCode = (VitalProductDataPageName)buffer[offset + 1];
|
|
|
PageLength = buffer[offset + 3];
|
|
|
ProductSerialNumber = ASCIIEncoding.ASCII.GetString(buffer, offset + 4, PageLength);
|