- removed reference to postprocessors and replaced it with preprocessors
This commit is contained in:
@@ -13,7 +13,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Berta_CNC(FlatCAMPostProc):
|
||||
class Berta_CNC(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -12,7 +12,7 @@ from AppPreProcessor import *
|
||||
# is compatible with almost any version of Grbl.
|
||||
|
||||
|
||||
class GRBL_laser(FlatCAMPostProc):
|
||||
class GRBL_laser(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class ISEL_CNC(FlatCAMPostProc):
|
||||
class ISEL_CNC(PreProc):
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
feedrate_format = '%.*f'
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class ISEL_ICP_CNC(FlatCAMPostProc):
|
||||
class ISEL_ICP_CNC(PreProc):
|
||||
include_header = False
|
||||
|
||||
def start_code(self, p):
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Marlin(FlatCAMPostProc):
|
||||
class Marlin(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Marlin_laser_FAN_pin(FlatCAMPostProc):
|
||||
class Marlin_laser_FAN_pin(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Marlin_laser_Spindle_pin(FlatCAMPostProc):
|
||||
class Marlin_laser_Spindle_pin(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Paste_1(FlatCAMPostProc_Tools):
|
||||
class Paste_1(AppPreProcTools):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Repetier(FlatCAMPostProc):
|
||||
class Repetier(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -11,7 +11,7 @@ from AppPreProcessor import *
|
||||
|
||||
# for Roland Preprocessors it is mandatory for the preprocessor name (python file and class name, both of them must be
|
||||
# the same) to contain the following keyword, case-sensitive: 'Roland' without the quotes.
|
||||
class Roland_MDX_20(FlatCAMPostProc):
|
||||
class Roland_MDX_20(PreProc):
|
||||
|
||||
include_header = False
|
||||
coordinate_format = "%.1f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Custom(FlatCAMPostProc):
|
||||
class Toolchange_Custom(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Manual(FlatCAMPostProc):
|
||||
class Toolchange_Manual(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class Toolchange_Probe_MACH3(FlatCAMPostProc):
|
||||
class Toolchange_Probe_MACH3(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class default(FlatCAMPostProc):
|
||||
class default(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class grbl_11(FlatCAMPostProc):
|
||||
class grbl_11(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
@@ -11,7 +11,7 @@ from AppPreProcessor import *
|
||||
|
||||
# for Roland Preprocessors it is mandatory for the preprocessor name (python file and class name, both of them must be
|
||||
# the same) to contain the following keyword, case-sensitive: 'Roland' without the quotes.
|
||||
class hpgl(FlatCAMPostProc):
|
||||
class hpgl(PreProc):
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
|
||||
@@ -9,7 +9,7 @@
|
||||
from AppPreProcessor import *
|
||||
|
||||
|
||||
class line_xyz(FlatCAMPostProc):
|
||||
class line_xyz(PreProc):
|
||||
|
||||
include_header = True
|
||||
coordinate_format = "%.*f"
|
||||
|
||||
Reference in New Issue
Block a user