Installation manual
CNC 8055
CNC 8055i
CUSTOMIZABLE SCREENS
15.
SOFT: V02.2X
·595·
Configuration language
15.2 Configuration language
The general characteristics of the configuration language are:
• All instructions are preceded by ";" and enclosed in parenthesis.
• The comments must be alone and preceded by ";;"
• The configuration file must begin with the line ;(PRGSCRIPT 1)
• It indicates that it is a configuration file corresponding to the version being used (in this case "1")
• The configuration file should end with the line ;(END)
• While debugging the program, the ;(DEBUG) instruction should be used
• If an error occurs while checking the configuration file, the CNC will inform about it in program
999500.
The configuration language consists of:
• A series of key words or tokens.
• The names of the internal CNC variables.
• Numbers that may be associated with the previous two items.
• Various punctuation signs.
Example of a configuration file:
;(PRGSCRIPT 1)
;;==================================
;; SCREEN LAYOUT
;; Screen in JOG mode - Actual
;;==================================
;[JOG],PLCM1125
;(DEBUG)
;(DISABLE 0)
;(WGDWIN 201)
;;--------------------- X axis, coordinate, error and consumption
;(AUTOREFRESH W1=POSX)
;(AUTOREFRESH W2=FLWEX)
;(FORMAT W3,LEDBARDEC)
;(AUTOREFRESH W3=ANAI1)
;;-------------------- Z axis, position, error and consumption
;(AUTOREFRESH W4=POSZ)
;(AUTOREFRESH W5=FLWEZ)
;(FORMAT W6,LEDBARDEC)
;(AUTOREFRESH W6=ANAI2)
;;-------------------- Feedrate, F, %
;(AUTOREFRESH W7=FEED)
;(AUTOREFRESH W8=FRO)
;;-------------------- Spindle, S, Smax, %
;(AUTOREFRESH W9=SPEED)
;(AUTOREFRESH W10=SLIMIT)
;(AUTOREFRESH W11=SSO)
;;-------------------- Tool and offset (T, D)
;(AUTOREFRESH W12=TOOL)
;(AUTOREFRESH W13=TOD)
;(END)