Chapter 9—C445 Logic Engine and Expansion I/O168 Power Xpert C445 Global Motor Management Relay MN042003EN—January 2019 www.eaton.comOR—Bitwise ORThe OR function block performs a bitwise OR operation on all the inputs. Up to 5 inputsIN1 – IN5 are supported.OUT = IN1 OR IN2 OR …. IN5XOR—Bitwise XORThe XOR function block performs a bitwise exclusive OR operation on all the inputs. Up to5 inputs IN1 – IN5 are supported.OUT = IN1 XOR IN2 XOR …. IN5Examples with UINT inputsParameter Data type DescriptionIN1 … IN5 BOOL, INT, DINT, UINT Input operandsOUT BOOL, INT, DINT, UINT ResultParameter Data type DescriptionIN1 … IN5 BOOL, INT, DINT, UINT Input operandsOUT BOOL, INT, DINT, UINT ResultFunction IN1 IN2 OUTAND 0x1234 0x4567 0x0024NOT 0x1234 0xEDCBOR 0x1234 0x4567 0x5777XOR 0x1234 0x4567 0x5753