- removed reference to postprocessors and replaced it with preprocessors

This commit is contained in:
Marius Stanciu
2020-05-18 16:11:02 +03:00
committed by Marius
parent ba3f10d355
commit a0a805217d
61 changed files with 212 additions and 211 deletions

View File

@@ -13,7 +13,7 @@
from AppPreProcessor import *
class Berta_CNC(FlatCAMPostProc):
class Berta_CNC(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -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"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class ISEL_CNC(FlatCAMPostProc):
class ISEL_CNC(PreProc):
include_header = True
coordinate_format = "%.*f"
feedrate_format = '%.*f'

View File

@@ -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):

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Marlin(FlatCAMPostProc):
class Marlin(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -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"

View File

@@ -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"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Paste_1(FlatCAMPostProc_Tools):
class Paste_1(AppPreProcTools):
include_header = True
coordinate_format = "%.*f"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Repetier(FlatCAMPostProc):
class Repetier(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -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"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Toolchange_Custom(FlatCAMPostProc):
class Toolchange_Custom(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Toolchange_Manual(FlatCAMPostProc):
class Toolchange_Manual(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class Toolchange_Probe_MACH3(FlatCAMPostProc):
class Toolchange_Probe_MACH3(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class default(FlatCAMPostProc):
class default(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class grbl_11(FlatCAMPostProc):
class grbl_11(PreProc):
include_header = True
coordinate_format = "%.*f"

View File

@@ -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"

View File

@@ -9,7 +9,7 @@
from AppPreProcessor import *
class line_xyz(FlatCAMPostProc):
class line_xyz(PreProc):
include_header = True
coordinate_format = "%.*f"