Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions S7.Net/PLCAddress.cs
Original file line number Diff line number Diff line change
Expand Up @@ -106,6 +106,7 @@ public static void Parse(string input, out DataType dataType, out int dbNumber,
return;
case "QB":
case "AB":
case "OB":
// Output byte
dataType = DataType.Output;
dbNumber = 0;
Expand All @@ -114,6 +115,7 @@ public static void Parse(string input, out DataType dataType, out int dbNumber,
return;
case "QW":
case "AW":
case "OW":
// Output word
dataType = DataType.Output;
dbNumber = 0;
Expand All @@ -122,6 +124,7 @@ public static void Parse(string input, out DataType dataType, out int dbNumber,
return;
case "QD":
case "AD":
case "OD":
// Output double-word
dataType = DataType.Output;
dbNumber = 0;
Expand Down