DavidBo - 2023-06-01
FUNCTION_BLOCK Pump
VAR
    idStr: STRING:='    ';
    pstr: POINTER TO STRING:=ADR(idStr);
END_VAR

In the declaration above I get the following error
SA0175: Suspicious operation on string: Possible index access 'ADR(idStr)'.
How do I solve that problem?