forked from markwal/GPX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gpx.ini
139 lines (97 loc) · 2.45 KB
/
gpx.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
;
; gpx.ini
;
; gcode to x3g conversion configuration file
;
;************ POST PROCESSING OPTIONS ************
[printer]
; MACHINE TYPE
;
; specify the machine definition using a pre-defined built-in type identifier
;
; NOTE: settings are order dependnet, so always start by settng the machine type
;
; c3 = Cupcake Gen3 XYZ, Mk5/6 + Gen4 Extruder
; c4 = Cupcake Gen4 XYZ, Mk5/6 + Gen4 Extruder
; cp4 = Cupcake Pololu XYZ, Mk5/6 + Gen4 Extruder
; cpp = Cupcake Pololu XYZ, Mk5/6 + Pololu Extruder
; t6 = TOM Mk6 - single extruder
; t7 = TOM Mk7 - single extruder
; t7d = TOM Mk7 - dual extruder
; r1 = Replicator 1 - single extruder
; r1d = Replicator 1 - dual extruder
; r2 = Replicator 2 (default config)
; r2h = Replicator 2 with HBP
; r2x = Replicator 2X
machine_type=r2
; GCODE FLAVOR
;
; specify the gcode flavor
;
; reprap = M109 Set Extruder Temperature and Wait
; makerbot = M109 Set Build Platform Temperature (Same as M140)
gcode_flavor=reprap
; BUILD TEMPERATURE
;
; override the gcode build plate temperature
; 0 = disabled
build_platform_temperature=0
; BUILD PROGRESS
;
; generate gcode for the build progress
; this should be enabled for slic3r and kisslicer
; 1 = enabled
; 0 = disabled
build_progress=1
; DITTO PRINTING
;
; print simultaniously with both nozzles
; 1 = enabled
; 0 = disabled
ditto_printing=0
; FILAMENT DIAMETER
;
; set this to the filament diameter setting used in the slicer
; 1.75 = default
slicer_filament_diameter=1.75
; SD CARD PATH
;
; if an SD card is inserted the x3g file will be written there
; uncomment to enable and substitute the name of your SD card volume
;sd_card_path=/Volumes/Things/
;************ RIGHT EXTRUDER ************
[right]
; ACTUAL FILAMENT DIAMETER
;
; override gcode for the right filament diameter
; 1.75 = default
; 0 = disabled
actual_filament_diameter=0
; ACTIVE TEMPERATURE
;
; override gcode for the right active temperature
; 0 = disabled
active_temperature=0
; STANDBY TEMPERATURE
;
; override gcode for the right standby temperature
; 0 = disabled
standby_temperature=0
;************ LEFT EXTRUDER ************
[left]
; ACTUAL FILAMENT DIAMETER
;
; override gcode for the left filament diameter
; 1.75 = default
; 0 = disabled
actual_filament_diameter=0
; ACTIVE TEMPERATURE
;
; override gcode for the left active temperature
; 0 = disabled
active_temperature=0
; STANDBY TEMPERATURE
;
; override gcode for the left standby temperature
; 0 = disabled
standby_temperature=0