XOR
Boolean exclusive OR of two variables.

Arguments | ||
---|---|---|
i1 | BOOL | |
i2 | BOOL | |
o1 | BOOL | Boolean exclusive OR of the two input items |
Example
(* FBD example with "XOR" operators *)

(* ST equivalence: *)
bo10 := bi101 XOR NOT (bi102); bo5 := (bi51 XOR bi52) XOR bi53;
Provide Feedback