Schematic

MicroBasic Language Reference
Advanced Digital Motor Controller User Manual 209
>> Operator
The right-shift operator (>>) shifts its first operand right by the number of bits specified by
its second operand.
expression >> expression
<> Operator
The inequality operator (<>) returns false if its operands are equal, true otherwise.
expression <> expression
< Operator
Less than relational operator (<) returns true if the first operand is less than the second,
false otherwise.
expression < expression
> Operator
Greater than relational operator (>) returns true if the first operand is greater than the sec-
ond, false otherwise.
expression > expression
<= Operator
Less than or equal relational operator (<=) returns true if the first operand is less than or
equal to the second, false otherwise.
expression <= expression
> Operator
Greater than relational operator (>) returns true if the first operand is greater than the sec-
ond, false otherwise.
expression > expression
>= Operator
Greater than or equal relational operator (>=) returns true if the first operand is greater
than or equal to the second, false otherwise.
expression >= expression
+= Operator
The addition assignment operator.
var += expression
An expression using the += assignment operator, such as
x += y