Message: Type '<type 1>' can not be converted to type '<type 2>'
Possible error cause: A variable is assigned to another variable with an incompatible type.
Error correction: Use a type conversion.
Example of the error:
PROGRAM PLC_PRG VAR test1: INT; test2: STRING; END_VAR test1 := test2; -->C0032: Type 'STRING' cannot be converted to type 'INT'
Error correction:
Example: test1 := TO_INT(test2);