We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bac7586 commit 45e4e2fCopy full SHA for 45e4e2f
RICADO.Omron/OmronPLC.cs
@@ -109,9 +109,9 @@ public int Retries
109
110
public string ControllerVersion => _controllerVersion;
111
112
- public int MaximumReadWordLength => _plcType == enPLCType.CP1 ? 499 : 999;
+ public ushort MaximumReadWordLength => _plcType == enPLCType.CP1 ? 499 : 999;
113
114
- public int MaximumWriteWordLength => _plcType == enPLCType.CP1 ? 496 : 996;
+ public ushort MaximumWriteWordLength => _plcType == enPLCType.CP1 ? 496 : 996;
115
116
#endregion
117
0 commit comments