Delta Electronics DOP-AS Series Network Card User Manual


 
Chapter 4 Macro Function|ScrEdit Software User Manual
Revision Apr. 30th, 2007, 2007PDD23000002 4-43
Code–107: There is RET in Macro
This error message means that there is RET command in Macro. RET command should be used for
sub-macro to return program. It means that the program does not finish. If the program needs to be
finished in Macro, please use END, not RET.
HMI Macro Error Messages
The user can read error messages by macro. Once there is an error and the user execute’s a correct
command before reading error message, the error message will be overwritten. When executing each macro,
each Macro error message will not be influenced by another macro.
Code–10: GOTO Error
This message means that there is GOTO error in macro.
Code–11: Stack Overflow
This message means that stack in macro is full. That may be cause by using too many sub-macros or
execute different macros at the same time. This is to avoid insufficient memory.
Code–12: CALL Empty Sub-macro
This is CALL sub-macro error. The sub-macro that is called should not be an empty sub-macro. This
message is to avoid unexpected error.
Code–13: Data Read Error
This is data read error. Sometimes this may be caused by memory data error but most of the time is the
controller data read error.
Code–14: Data Write Error
This is data write error. Sometimes this may be caused by memory data error but most of the time is
the controller data write error.
Code–15: Divisor is 0
This error message means that the devisor is 0 when performing division operation.