AND

Boolean AND between 2 to 32 Boolean variables.
In the text editor, use the ’&’ character or type AND.
lrso_an1
Arguments
(inputs)
BOOL
From 2 to 32 inputs.
output
BOOL
Boolean
AND
of the input variables
Example
(* FBD example with "AND" Operators *)
lrso_an2
(* ST equivalence 1: *)
bo10 := bi101 AND NOT (bi102);
bo5 := bi51 AND bi52 AND bi53;
(* ST equivalence 2: *)
bo10 := bi101 & NOT (bi102);
bo5 := bi51 & bi52 & bi53;
Provide Feedback
Have questions or feedback about this documentation? Please submit your feedback here.
Normal