Chapter 6 RAPID!
Tables
WCDMA Options Version 6.20
207
37 DO Command:
Missing LOOP
A DO command needs always to be finished with a LOOP
statement.
38
DO Command:
WHILE or UNTIL expected
Within a DO...LOOP command, only one of the conditions
WHILE or UNTIL may be used – either with DO or with
LOOP.
40
NEXT Variable and FOR Variable are not the
same
The variable used with the FOR statement must be identical
with the variable used with the
NEXT statement of the same
block.
41
FOR Command:
Missing NEXT
A FOR command block must be ended with a NEXT state-
ment.
42
FOR Command:
TO expected
The FOR statement may include a range for the variable to
be incremented. This range is specified with
TO (e.g. FOR i
= 1 TO 10
).
46
Chain Stack overflow
The maximum depth of chained programs is 4. In case more
than those 4 programs have been chained (e.g. by a chained
program that itself chains other programs), this message will
occur.
47
Chain file not found
The RAPID! program file that should be chained could not be
found in the current or specified directory.
50
Expression: NOT,+,- are not allowed here
Signs may not be used in this context.
51
Expression: Command or Function is not
allowed here
A command or a function is not allowed in this context.
52
Label expected
A symbolic label is expected (e.g. after an ON ERROR, GOTO,
GOSUB or RESUME command).
53
Label not found
The symbolic label issued with a branch command could not
be found in the program. Mostly, this is due to typing errors.
54
Label already exists
The symbolic label stated has already been used with a dif-
ferent branch command.