Compiler Error C0044
Message: Assignment to input missing for parameter '<input variable name>' in call of '<function block name>'
Possible error cause: A parameter is passed although an input variable is not declared.
Error correction: Declare an input variable.
Example of the error:
PROGRAM MAIN
VAR
inst : FB;
END_VAR
inst(1);
FUNCTION_BLOCK FB
VAR_INPUT
END_VARMessage:
C0044: Assignment to input missing for parameter '1' in call of 'FB'.
Error correction:
VAR_INPUT
in : INT;
END_VAR