From 0a8ee0e091697c145404f239cd3b2b3ff36a67fa Mon Sep 17 00:00:00 2001 From: Michael Croes Date: Thu, 13 Aug 2020 22:04:53 +0200 Subject: [PATCH] PLCAddress: Add OB, OW, OD types from PR #277 PR #246 included most types also included in #277, this adds OB, OW and OD that were only in #277. Close #277. --- S7.Net/PLCAddress.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/S7.Net/PLCAddress.cs b/S7.Net/PLCAddress.cs index ed542e5..fd30b94 100644 --- a/S7.Net/PLCAddress.cs +++ b/S7.Net/PLCAddress.cs @@ -106,6 +106,7 @@ return; case "QB": case "AB": + case "OB": // Output byte dataType = DataType.Output; dbNumber = 0; @@ -114,6 +115,7 @@ return; case "QW": case "AW": + case "OW": // Output word dataType = DataType.Output; dbNumber = 0; @@ -122,6 +124,7 @@ return; case "QD": case "AD": + case "OD": // Output double-word dataType = DataType.Output; dbNumber = 0;