0023: Unexpected instruction
The compiler finds an incorrect syntax. It could be an error in a FOR loop or a malformed variable declaration.
Possible solutions: check the documentation and provide the correct syntax:
var <variable>: <type>or
var
<variable>: <type>
endFOR loop syntax:
FOR <loop variable> = <initial value> TO/DOWNTO <final value> [step = 1]
<the loop body>
ENDLast updated