信息 :条件调用 (????ALWAYS CALC???? ) 的第二个参数必须是有效的调用语句。
纠错 :在条件 ????CALC??? 调用的第二个参数中指定函数、方法或函数块的调用。
错误示例
PROGRAM PLC_PRG VAR condition : BOOL; END_VAR CALC(condition, 1+2); --> C0115: The second parameter of a conditional call has to be a valid call statement.
纠错
Example: CALC(condition, MyFunction(1,2))