DESCRIPTION OF PROGRAMMING PARAMETERS
Note: Comes from the previous page.
Outputs the result of the
AND/OR operation, (A
and B) | C.
Output a value after
selecting one of two
inputs, if (A) then B,
otherwise C.
If the input at A is 1, the
output will be B. If the
input at A is 0, the output
parameter will be C.
Test the B bit of the A
parameter, BITTEST (A,
B).
If the B bit of the A input
is 1, the output is 1. If it
is 0, then the output is 0.
The input value of B
must be between 0–16.
If the value is higher than
16, it will be recognized
as 16. If input at B is 0,
the output is always 0.
Set the B bit of the A
parameter, BITSET(A,
B). Output the changed
value after setting the B
bit to input at A.
The input value of B
must be between 0–16.
If the value is higher than
16, it will be recognized
as 16. If the input at B is
0, the output is always 0.
Note: Continues in the next page.