Fixed exception on duplicate memory adresses when the adress area was different

- counted up version number
This commit is contained in:
Felix Weiß
2022-07-13 18:28:28 +02:00
parent 0a93df287d
commit b1c2cdb70e
4 changed files with 37 additions and 34 deletions

View File

@@ -10,6 +10,9 @@ namespace Examples {
[Register(1000, RegisterType.R)]
public bool TestBool1 { get; private set; }
[Register(1000)]
public int TestDuplicate { get; private set; }
//corresponds to a XD input of the PLC
[Register(RegisterType.X, SpecialAddress.D)]
public bool TestBoolInputXD { get; private set; }