A SERVICE OF

logo

Define a function block diagram routine Chapter 9
Rockwell Automation Publication 1756-RM084S-EN-P - March 2015 163
L5X Example: Test Edits and Pending Edits Exist
L5K Example 1: Both Test Edits and Pending Edits Exist
FBD_ROUTINE MyFbdRoutine (SheetSize := "Letter (8.5x11in)",
SheetOrientation := Landscape)
LOGIC (Online_Edit_Type := Orig)
(* Sheets inserted here - see format described above
*)
END_LOGIC
LOGIC (Online_Edit_Type := Test)
(* Sheets inserted here - see format described above
*)
END_LOGIC
LOGIC (Online_Edit_Type := Pend)
(* Sheets inserted here - see format described above
*)
END_LOGIC
END_FBD_ROUTINE
L5K Example 2: Only Pending Edits Exist
FBD_ROUTINE MyFbdRoutine (SheetSize := "Letter (8.5x11in)",
SheetOrientation := Landscape)
LOGIC (Online_Edit_Type := Orig)
(* Sheets inserted here - see format described above
*)
END_LOGIC
LOGIC (Online_Edit_Type := Pend)
(* Sheets inserted here - see format described above
*)
END_LOGIC
END_FBD_ROUTINE