Compare Operations
There are seven compare operations that you can use to compare the selected element
to the selected GPRM.
• = (equal): Executes the command if the two values are the same.
• != (not equal): Executes the command if the two values are not the same.
• > = (greater or equal): Executes the command if the selected GPRM is larger or the same
as the selected element.
• > (greater): Executes the command if the selected GPRM is larger than the selected
element.
• <= (smaller or equal): Executes the command if the selected GPRM is smaller or the
same as the selected element.
• < (smaller): Executes the command if the selected GPRM is smaller than the selected
element.
• & (and): Performs a bit-wise “and” operation between the two values and executes the
command if the bits set to 1 in the selected GPRM are also set to 1 in the selected
element. See
Using Bit-Wise Operations
for information on bit-wise operations.
Note: You need to have a basic understanding of working with binary numbers to be
able to use these operations.