Ich brauche eine gute Möglichkeit der Werte von bestimmten Bits in einem unsigned short Extraktion:Extract unsigned Werte von bestimmten Bits in C# ushort
Die Definition der 4 Alarme innerhalb des ushort:
Name......Range.......Bits
Alarm4....0-15....13/16-16/16
Alarm3....0-15....9/16-12/16
Alarm2....0-15....5/16-8/16
Alarm1....0-15....1/16-4/16
The Wert des ushort: 4383 oder (1000100011111 in binär)
Also, was ich erreichen will ist:
1001100110011001
Alarm1.....Alarm2.....Alarm3......Alarm4
1001.......1001.......1001........1001
Gets translated into:
Alarm1....Alarm2....Alarm3....Alarm4
9............9............9............9
Mit dem Pseudo-Code:
getValueFunc(ushort bits, int offset);
ushort u = 4383;
UInt16 Alarm1Value = getValueFunc(u, 1);
UInt16 Alarm2Value = getValueFunc(u, 5);
UInt16 Alarm3Value = getValueFunc(u, 9);
UInt16 Alarm4Value = getValueFunc(u, 13);
Grüße, Johan
Vielen Dank! Dies funktioniert perfekt für einen Fall, in dem alle 16 Bits belegt sind. Getestet, und es funktioniert, ich konnte alle Werte extrahieren. –