|
@@ -543,12 +543,11 @@ namespace MECF.Framework.Common.Device.Wago
|
|
|
{
|
|
|
if (wagoAO.DataType == "short")
|
|
|
{
|
|
|
- writeByts = BitConverter.GetBytes((short)var.Item2);
|
|
|
- Array.Reverse(writeByts);
|
|
|
+ writeByts = byteTransform.GetBytes((short)var.Item2);
|
|
|
}
|
|
|
else
|
|
|
{
|
|
|
- writeByts = BitConverter.GetBytes((ushort)var.Item2);
|
|
|
+ writeByts = byteTransform.GetBytes((ushort)var.Item2);
|
|
|
}
|
|
|
}
|
|
|
}
|