Browse Source

update wago ao

chenkui 1 day ago
parent
commit
ad21ac97b9
1 changed files with 2 additions and 3 deletions
  1. 2 3
      Framework/Common/Device/Wago/WagoControllerCfgManager.cs

+ 2 - 3
Framework/Common/Device/Wago/WagoControllerCfgManager.cs

@@ -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);
                         }
                     }
                 }