You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am finding that on the Mk2 devices, the report id does not come back in the first byte as expected. Mk1 devices work as expected though. Running the following code sample on a machine with both a Mk1 and a Mk2 device will show the issue. On the Mk2 device, I would expect the first byte of the read report to have a value of 0x01 as it does for the Mk1 devices. While my example code is using the HidSharp nuget package, the same results occur when using the HidLibrary nuget package. Is this difference expected between the Mk1 and Mk2 devices?
I also noticed that both the Mk1 and Mk2 devices report a max feature report length of 9 bytes, but your documentation indicates the length to be 8 bytes. Is the extra byte reserved for future use? On Windows (.NET), the HidSharp library forces you to use 9 byte buffers because that is what the device is reporting. The HidLibrary library is not as strict. It will let you write an 8 byte buffer, but always returns 9 bytes.
Neither of these are a huge deal. I'm mainly just trying to better understand how things are working.
Code
// ***** Depends on the HidSharp nuget package *****constintProductId=0x01ED;constintVendorId=0x27B8;varloader=newHidDeviceLoader();// Read the pattern value at position 5 for each connected device.vardevices=loader.GetDevices(VendorId,ProductId);foreach(HidDevicedeviceindevices){Console.WriteLine("{0} [MaxFeatureReportLength: {1}]",device.ProductName,device.MaxFeatureReportLength);using(varstream=device.Open()){varhidbuffer=newbyte[]{0x01,(byte)'R',0,0,0,0,0,5,0};Console.WriteLine("Write Feature Report: {0}",String.Join("-",hidbuffer));stream.SetFeature(hidbuffer);hidbuffer=newbyte[device.MaxFeatureReportLength];hidbuffer[0]=0x01;stream.GetFeature(hidbuffer);Console.WriteLine("Read Feature Report: {0}",String.Join("-",hidbuffer));}Console.WriteLine();}
I am finding that on the Mk2 devices, the report id does not come back in the first byte as expected. Mk1 devices work as expected though. Running the following code sample on a machine with both a Mk1 and a Mk2 device will show the issue. On the Mk2 device, I would expect the first byte of the read report to have a value of
0x01
as it does for the Mk1 devices. While my example code is using the HidSharp nuget package, the same results occur when using the HidLibrary nuget package. Is this difference expected between the Mk1 and Mk2 devices?I also noticed that both the Mk1 and Mk2 devices report a max feature report length of 9 bytes, but your documentation indicates the length to be 8 bytes. Is the extra byte reserved for future use? On Windows (.NET), the HidSharp library forces you to use 9 byte buffers because that is what the device is reporting. The HidLibrary library is not as strict. It will let you write an 8 byte buffer, but always returns 9 bytes.
Neither of these are a huge deal. I'm mainly just trying to better understand how things are working.
Code
Output
The text was updated successfully, but these errors were encountered: