SA0123: Usages of INI, ADR or BITADR
Function | Determines the use of the (TwinCAT-specific) operators INI, ADR, BITADR. |
Reason | TwinCAT-specific operators prevent portability of the code. |
Importance | Low |
Sample:
PROGRAM MAIN
VAR
nVar : INT;
pINT : POINTER TO INT;
END_VARpINT := ADR(nVar); // => SA0123