Message: Direct Address expected after 'AT' instead of '<identifier>'
Possible error cause: Either an invalid address or no address is assigned after 'AT'.
Error correction: Specify a valid address.
Example of the error:
PROGRAM PLC_PRG VAR i AT ABC : INT; END_VAR --> C0030: Direct Address expected after 'AT' instead of 'ABC'
Error correction:
Example: i AT %IW0 : INT;