18 lines
287 B
Plaintext
Executable File
18 lines
287 B
Plaintext
Executable File
; Manual drill positioning - moves to X/Y, disables Z for manual quill, then pauses
|
|
; Params: #1=x, #2=y
|
|
o<drill_man> sub
|
|
; x1, y1
|
|
; #1 #2
|
|
|
|
G90 ; absolute x,y,z
|
|
M102 ; disable Z-axis (M101 enables)
|
|
|
|
;;;;;;;;;; PROGRAM ;;;;;;;;;
|
|
|
|
G0 X#1 Y#2
|
|
|
|
M0 ; pause
|
|
|
|
o<drill_man> endsub
|
|
|
|
M2 |