Important Notes; About The Priority Of The Operator - IDEC FT1A Series User Manual

Hide thumbs Also See for FT1A Series:
Table of Contents

Advertisement

Important Notes

This section describes important notes when programming scripts.
Important Notes Regarding While Definition
■Define so the execution does not go into an infinite loop.
The execution expression is repeatedly executed while the conditional expression is satisfied.
However, it will go into an infinite loop when the conditional expression is satisfied continually.
[D0100] = 10;
while (0 != [D0100])
{
[D0200] = [D0200] + 1;
}
In the conditional expression of the while definition, it states to exit the loop when the value of D0100 turns 0. However, the value
stored in D0100 is not changed after string 10 in the first line of the script, so the execution goes into an infinite loop.
When using the while definition, define it so the execution will not go into an infinite loop.
If the execution becomes an infinite loop, the scan time will exceed the watchdog timer setting and a watchdog timer error will
occur.
The value of D0100 becomes 0 when the while definition is repeated 10 times in the following example, and the execution will get
out of the while definition.
[D0100] = 10;
while (0 != [D0100])
{
[D0200] = [D0200] + 1;
[D0100] = [D0100] - 1;
}

About the Priority of the Operator

Operators are processed in the order from the left in each line. When multiple operations are combined, the operators are
processed in the following priorities.
Priority
High
! ~ - (Negative number)
Low
Operator
()
* / %
+ - (Subtraction)
<< >>
&
^
|
< <= > >=
== !=
&&
||
=
S
AXIS P
MART
/L
U
'
M
FT9Y-B1378
RO
ITE
SER
S
ANUAL
13: S
CRIPTS
13-35

Hide quick links:

Advertisement

Table of Contents
loading

Table of Contents