Logic
Bitwise Match
Description Output is set HIGH (1) when the state of the bits of Input 1 match the state of the bits of Input 2, otherwise, it is set LOW (0). Input 1 and Input 2 are unsigned 16-bit integers.

0x0 ≤ Input ≤ 0xFFFF
Output = 0 (No Match) or 1 (Match)

Input 1: 0x2416    0010 0100 0001 0110
Input 2: 0x2416    0010 0100 0001 0110
Output:  Match    1
Availability
  • Available only in the dw2xx & dw2xx-v2 series products
  • Requires library: Process Control (option -05)
  • Firmware versions 0x2006 and later
savvy-SFD Graphic bitwiseMatch
Graphic with Parameters bitwiseMatch

Parameters

Input 1 Input, Read-write, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xFFFF
Input 2 Input, Read-write, Hexadecimal (unsigned 16-bit integer)
0x0 to 0xFFFF
Output Output, Read-only, Boolean (signed 16-bit integer)
0 = No Match
1 = Match