ID 20616
Nesting depth not completed at macro definition. | |||
Description | The nesting of macros in a macro definition is programmed in an incomplete or incorrect syntax.
Syntax example: Wrong:
N10 "MACRO1" = "X100"
N20 "MACRO2" = "Y200"
N30 "MACRO3" = "G01 F1000 \"MACRO1\" "MACRO2\"
:
Correct:
N10 "MACRO1" = "X100"
N20 "MACRO2" = "Y200"
N30 "MACRO3" = "G01 F1000 \"MACRO1\" \"MACRO2\" "
:
| ||
Response | Class | 2 | Abort NC program processing. |
Solution | Class | 3 | Check and modify NC program. Each nested macro name has to be included in \" (Backslash – quotation mark). Ensure that the quotation mark after the macro NC code is programmed! [PROG// Section: Nesting macros] |
Error type | 1, Error message from NC program. | ||
|