enable heindenhain 530 post

pull/122/head
TurBoss 2019-05-19 02:03:18 +02:00
rodzic bbeda55775
commit 5b674f2feb
2 zmienionych plików z 4 dodań i 0 usunięć

Wyświetl plik

@ -132,6 +132,7 @@ class machineSettings(bpy.types.PropertyGroup):
('GRBL', 'grbl',
'optimized gcode for grbl firmware on Arduino with cnc shield'),
('HEIDENHAIN', 'Heidenhain', 'heidenhain'),
('HEIDENHAIN530', 'Heidenhain530', 'heidenhain530'),
('TNC151', 'Heidenhain TNC151',
'Post Processor for the Heidenhain TNC151 machine'),
('SIEGKX1', 'Sieg KX1', 'Sieg KX1'),

Wyświetl plik

@ -1143,6 +1143,9 @@ def exportGcodePath(filename, vertslist, operations):
elif m.post_processor == 'HEIDENHAIN':
extension = '.H'
from .nc import heiden as postprocessor
elif m.post_processor == 'HEIDENHAIN530':
extension = '.H'
from .nc import heiden530 as postprocessor
elif m.post_processor == 'TNC151':
from .nc import tnc151 as postprocessor
elif m.post_processor == 'SIEGKX1':