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
Then DataValueSigned cannot be round tripped and later accessed DataItems have a wrong value.
Use case
Windows 10
Visual Studio 2022
C# .Net Framework 4.8
I'm trying to get Logical min and max values from a USB device under Windows. The logical minimum in the hid descriptor is -512.
The later accessed DataItem contains a logical minimum of 0.
TL;DR
When creating instance of EncodedItem
if DataValueSigned = X where
(X > Int16.MinValue && X < 0) || (X > Int16.MaxValue)
Then DataValueSigned cannot be round tripped and later accessed DataItems have a wrong value.
Use case
I'm trying to get Logical min and max values from a USB device under Windows. The logical minimum in the hid descriptor is -512.
The later accessed DataItem contains a logical minimum of 0.
I've managed to narrow it down to EncodedItem.cs, line 162
But I cannot for the life of me understand the logic behind EncodedItem.Data.
Steps to reproduce with VS 2022:
Open HidSharp project
In Visual Studio Menu, go to View > Other Windows > C# Interactive
In Solution Explorer, right click HidSharp Project and choose
Initialize Interactive with Project
In Interactive Console, enter the following:
EncodedItem.DataValueSigned
=0
Observations
If anyone has an Idea how to correct this without breaking anything else, I would appreciate the help.
Diego
The text was updated successfully, but these errors were encountered: