We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The use of hardcoded physical addresses should be avoided.
So, we have to report any physical address in the code, except those that are used when initializing variables:
PROGRAM l10 VAR a AT %MW10.2.4.1 : INT; END_VAR %MW10.2.4.1 := 42; (* PLCOPEN-N1 *) a := 42; (* ok *) END_PROGRAM
This could be implemented as a simple pass on AST.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The use of hardcoded physical addresses should be avoided.
So, we have to report any physical address in the code, except those that are used when initializing variables:
This could be implemented as a simple pass on AST.
The text was updated successfully, but these errors were encountered: