You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

34 lines
418 B

FUNCTION IJ_DT : BOOL
VAR_INPUT
dt_up :BOOL;
dt_down :BOOL;
END_VAR
VAR
END_VAR
(*
20200701
1.0
*)
(*
Input_Type: 输入
dt_up 上行
dt_down下行
Output_Type 输出
dt_r 运行
*)
IJ_DT:=dt_up or dt_down;
END_FUNCTION