- when using the NCCAD9 preprocessor (for Kosy machines) at GCode save the .knc extension will be automatically preselected

- added a preprocessor for Roland MDX-540
This commit is contained in:
Marius Stanciu
2021-07-21 23:56:53 +03:00
committed by Marius
parent 29988a622e
commit 1330b1047c
5 changed files with 139 additions and 4 deletions

View File

@@ -104,7 +104,7 @@ class NCCAD9(PreProc):
gcode += ';X range: ' + '{: >9s}'.format(xmin) + ' ... ' + '{: >9s}'.format(xmax) + ' ' + units + '\n'
gcode += ';Y range: ' + '{: >9s}'.format(ymin) + ' ... ' + '{: >9s}'.format(ymax) + ' ' + units + '\n\n'
gcode += ';Spindle Speed: %s RPM)\n' % str(p['spindlespeed'])
gcode += ';Spindle Speed: %s RPM\n' % str(p['spindlespeed'])
gcode += ('G20' if p.units.upper() == 'IN' else 'G21') + "\n"
gcode += 'G76 ;Reference-travel to the endswitches'