chiark / gitweb /
26ea95088be2426e30215b5179d439453c8361b2
[marlin.git] / Marlin / Configuration.h
1 #ifndef CONFIGURATION_H
2 #define CONFIGURATION_H
3
4 // This configurtion file contains the basic settings.
5 // Advanced settings can be found in Configuration_adv.h 
6 // BASIC SETTINGS: select your board type, temperature sensor type, axis scaling, and endstop configuration
7
8 //User specified version info of THIS file to display in [Pronterface, etc] terminal window during startup.
9 //Implementation of an idea by Prof Braino to inform user that any changes made
10 //to THIS file by the user have been successfully uploaded into firmware.
11 #define STRING_VERSION_CONFIG_H "2012-07-28" //Personal revision number for changes to THIS file.
12 #define STRING_CONFIG_H_AUTHOR "iwj" //Who made the changes.
13
14 // This determines the communication speed of the printer
15 #define BAUDRATE 250000
16 //#define BAUDRATE 115200
17
18 //// The following define selects which electronics board you have. Please choose the one that matches your setup
19 // Gen7 custom (Alfons3 Version) = 10 "https://github.com/Alfons3/Generation_7_Electronics"
20 // Gen7 v1.1, v1.2 = 11
21 // Gen7 v1.3 = 12
22 // Gen7 v1.4 = 13
23 // MEGA/RAMPS up to 1.2 = 3
24 // RAMPS 1.3 = 33 (Power outputs: Extruder, Bed, Fan)
25 // RAMPS 1.3 = 34 (Power outputs: Extruder0, Extruder1, Bed)
26 // Gen6 = 5
27 // Gen6 deluxe = 51
28 // Sanguinololu 1.2 and above = 62
29 // Melzi = 63
30 // Ultimaker = 7
31 // Teensylu = 8
32 // Gen3+ =9
33
34 #ifndef MOTHERBOARD
35 #define MOTHERBOARD 62
36 #endif
37
38
39
40 //===========================================================================
41 //=============================Thermal Settings  ============================
42 //===========================================================================
43 //
44 //--NORMAL IS 4.7kohm PULLUP!-- 1kohm pullup can be used on hotend sensor, using correct resistor and table
45 //
46 //// Temperature sensor settings:
47 // -2 is thermocouple with MAX6675 (only for sensor 0)
48 // -1 is thermocouple with AD595
49 // 0 is not used
50 // 1 is 100k thermistor - best choice for EPCOS 100k (4.7k pullup)
51 // 2 is 200k thermistor - ATC Semitec 204GT-2 (4.7k pullup)
52 // 3 is mendel-parts thermistor (4.7k pullup)
53 // 4 is 10k thermistor !! do not use it for a hotend. It gives bad resolution at high temp. !!
54 // 5 is 100K thermistor - ATC Semitec 104GT-2 (Used in ParCan) (4.7k pullup)
55 // 6 is 100k EPCOS - Not as accurate as table 1 (created using a fluke thermocouple) (4.7k pullup)
56 // 7 is 100k Honeywell thermistor 135-104LAG-J01 (4.7k pullup)
57 //
58 //    1k ohm pullup tables - This is not normal, you would have to have changed out your 4.7k for 1k 
59 //                          (but gives greater accuracy and more stable PID)
60 // 51 is 100k thermistor - EPCOS (1k pullup)
61 // 52 is 200k thermistor - ATC Semitec 204GT-2 (1k pullup)
62 // 55 is 100k thermistor - ATC Semitec 104GT-2 (Used in ParCan) (1k pullup)
63
64 #define TEMP_SENSOR_0 102
65 #define TEMP_SENSOR_1 0
66 #define TEMP_SENSOR_2 0
67 #define TEMP_SENSOR_BED 101
68
69 // Actual temperature must be close to target for this long before M109 returns success
70 #define TEMP_RESIDENCY_TIME 10  // (seconds)
71 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
72 #define TEMP_WINDOW     1       // (degC) Window around target to start the recidency timer x degC early.
73
74 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
75 // to check that the wiring to the thermistor is not broken. 
76 // Otherwise this would lead to the heater being powered on all the time.
77 #define HEATER_0_MINTEMP 5
78 #define HEATER_1_MINTEMP 5
79 #define HEATER_2_MINTEMP 5
80 #define BED_MINTEMP 5
81
82 // When temperature exceeds max temp, your heater will be switched off.
83 // This feature exists to protect your hotend from overheating accidentally, but *NOT* from thermistor short/failure!
84 // You should use MINTEMP for thermistor short/failure protection.
85 #define HEATER_0_MAXTEMP 275
86 #define HEATER_1_MAXTEMP 275
87 #define HEATER_2_MAXTEMP 275
88 #define BED_MAXTEMP 150
89
90
91 // PID settings:
92 // Comment the following line to disable PID and enable bang-bang.
93 #define PIDTEMP
94 #define PID_MAX 255 // limits current to nozzle; 255=full current
95 #ifdef PIDTEMP
96   //#define PID_DEBUG // Sends debug data to the serial port. 
97   //#define PID_OPENLOOP 1 // Puts PID in open loop. M104 sets the output power in %
98   #define PID_INTEGRAL_DRIVE_MAX 255  //limit for the integral term
99   #define K1 0.95 //smoothing factor withing the PID
100   #define PID_dT ((16.0 * 8.0)/(F_CPU / 64.0 / 256.0)) //sampling period of the
101
102 // If you are using a preconfigured hotend then you can use one of the value sets by uncommenting it
103 // Ultimaker
104 //    #define  DEFAULT_Kp 22.2
105 //    #define  DEFAULT_Ki 1.08  
106 //    #define  DEFAULT_Kd 114  
107
108 // RepRapPro Huxley + Mendel
109     #define  DEFAULT_Kp 12.0
110     #define  DEFAULT_Ki (2.2*PID_dT)
111     #define  DEFAULT_Kd (80/PID_dT)
112
113 // Makergear
114 //    #define  DEFAULT_Kp 7.0
115 //    #define  DEFAULT_Ki 0.1  
116 //    #define  DEFAULT_Kd 12  
117
118 // Mendel Parts V9 on 12V    
119 //    #define  DEFAULT_Kp 63.0
120 //    #define  DEFAULT_Ki 2.25
121 //    #define  DEFAULT_Kd 440
122 #endif // PIDTEMP
123
124 //this prevents dangerous Extruder moves, i.e. if the temperature is under the limit
125 //can be software-disabled for whatever purposes by
126 #define PREVENT_DANGEROUS_EXTRUDE
127 //if PREVENT_DANGEROUS_EXTRUDE is on, you can still disable (uncomment) very long bits of extrusion separately.
128 #define PREVENT_LENGTHY_EXTRUDE
129
130 #define EXTRUDE_MINTEMP 170
131 #define EXTRUDE_MAXLENGTH (X_MAX_LENGTH+Y_MAX_LENGTH) //prevent extrusion of very large distances.
132
133 //===========================================================================
134 //=============================Mechanical Settings===========================
135 //===========================================================================
136
137 // Uncomment the following line to enable CoreXY kinematics
138 // #define COREXY
139
140 // corse Endstop Settings
141 #define ENDSTOPPULLUPS // Comment this out (using // at the start of the line) to disable the endstop pullup resistors
142
143 #ifndef ENDSTOPPULLUPS
144   // fine Enstop settings: Individual Pullups. will be ignord if ENDSTOPPULLUPS is defined
145   #define ENDSTOPPULLUP_XMAX
146   #define ENDSTOPPULLUP_YMAX
147   #define ENDSTOPPULLUP_ZMAX
148   #define ENDSTOPPULLUP_XMIN
149   #define ENDSTOPPULLUP_YMIN
150   //#define ENDSTOPPULLUP_ZMIN
151 #endif
152
153 #ifdef ENDSTOPPULLUPS
154   #define ENDSTOPPULLUP_XMAX
155   #define ENDSTOPPULLUP_YMAX
156   #define ENDSTOPPULLUP_ZMAX
157   #define ENDSTOPPULLUP_XMIN
158   #define ENDSTOPPULLUP_YMIN
159   #define ENDSTOPPULLUP_ZMIN
160 #endif
161
162 // The pullups are needed if you directly connect a mechanical endswitch between the signal and ground pins.
163 const bool X_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. 
164 const bool Y_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. 
165 const bool Z_ENDSTOPS_INVERTING = false; // set to true to invert the logic of the endstops. 
166 //#define DISABLE_MAX_ENDSTOPS
167
168 // For Inverting Stepper Enable Pins (Active Low) use 0, Non Inverting (Active High) use 1
169 #define X_ENABLE_ON 0
170 #define Y_ENABLE_ON 0
171 #define Z_ENABLE_ON 0
172 #define E_ENABLE_ON 0 // For all extruders
173
174 // Disables axis when it's not being used.
175 #define DISABLE_X false
176 #define DISABLE_Y false
177 #define DISABLE_Z true
178 #define DISABLE_E false // For all extruders
179
180 #define INVERT_X_DIR true    // for Mendel set to false, for Orca set to true
181 #define INVERT_Y_DIR false    // for Mendel set to true, for Orca set to false
182 #define INVERT_Z_DIR false     // for Mendel set to false, for Orca set to true
183 #define INVERT_E0_DIR true   // for direct drive extruder v9 set to true, for geared extruder set to false
184 #define INVERT_E1_DIR true    // for direct drive extruder v9 set to true, for geared extruder set to false
185 #define INVERT_E2_DIR true   // for direct drive extruder v9 set to true, for geared extruder set to false
186
187 // ENDSTOP SETTINGS:
188 // Sets direction of endstops when homing; 1=MAX, -1=MIN
189 #define X_HOME_DIR -1
190 #define Y_HOME_DIR -1
191 #define Z_HOME_DIR -1
192
193 #define min_software_endstops true //If true, axis won't move to coordinates less than HOME_POS.
194 #define max_software_endstops true  //If true, axis won't move to coordinates greater than the defined lengths below.
195 // Travel limits after homing
196 #define X_MAX_POS 155
197 #define X_MIN_POS 0
198 #define Y_MAX_POS 150
199 #define Y_MIN_POS 0
200 #define Z_MAX_POS 90
201 #define Z_MIN_POS 0
202
203 #define X_MAX_LENGTH (X_MAX_POS - X_MIN_POS)
204 #define Y_MAX_LENGTH (Y_MAX_POS - Y_MIN_POS)
205 #define Z_MAX_LENGTH (Z_MAX_POS - Z_MIN_POS)
206
207 // The position of the homing switches. Use MAX_LENGTH * -0.5 if the center should be 0, 0, 0
208 #define X_HOME_POS 0
209 #define Y_HOME_POS 0
210 #define Z_HOME_POS 0
211
212 //// MOVEMENT SETTINGS
213 #define NUM_AXIS 4 // The axis order in all axis related arrays is X, Y, Z, E
214 #define HOMING_FEEDRATE {50*60, 50*60, 4*60, 0}  // set the homing speeds (mm/min)
215
216 // default settings 
217
218 #define DEFAULT_AXIS_STEPS_PER_UNIT   {91.4286, 91.4286,4000,875}                    // default steps per unit for ultimaker
219     // [not really?? found in reprappro config, unconditional]
220 #define DEFAULT_MAX_FEEDRATE          {500, 500, 5, 45}    // (mm/sec)    
221 #define DEFAULT_MAX_ACCELERATION      {1000,1000,50,250}    // X, Y, Z, E maximum start speed for accelerated moves. E default values are good for skeinforge 40+, for older versions raise them a lot.
222
223 #define DEFAULT_ACCELERATION          1000    // X, Y, Z and E max acceleration in mm/s^2 for printing moves 
224 #define DEFAULT_RETRACT_ACCELERATION  1000   // X, Y, Z and E max acceleration in mm/s^2 for r retracts
225
226 // 
227 #define DEFAULT_XYJERK                15.0    // (mm/sec)
228 #define DEFAULT_ZJERK                 0.4     // (mm/sec)
229 #define DEFAULT_EJERK                 15.0    // (mm/sec)
230
231 //===========================================================================
232 //=============================Additional Features===========================
233 //===========================================================================
234
235 // EEPROM
236 // the microcontroller can store settings in the EEPROM, e.g. max velocity...
237 // M500 - stores paramters in EEPROM
238 // M501 - reads parameters from EEPROM (if you need reset them after you changed them temporarily).  
239 // M502 - reverts to the default "factory settings".  You still need to store them in EEPROM afterwards if you want to.
240 //define this to enable eeprom support
241 //#define EEPROM_SETTINGS
242 //to disable EEPROM Serial responses and decrease program space by ~1700 byte: comment this out:
243 // please keep turned on if you can.
244 //#define EEPROM_CHITCHAT
245
246 //LCD and SD support
247 //#define ULTRA_LCD  //general lcd support, also 16x2
248 //#define SDSUPPORT // Enable SD Card Support in Hardware Console
249
250 //#define ULTIMAKERCONTROLLER //as available from the ultimaker online store.
251 //#define ULTIPANEL  //the ultipanel as on thingiverse
252
253
254 #ifdef ULTIMAKERCONTROLLER    //automatic expansion
255  #define ULTIPANEL
256  #define NEWPANEL
257 #endif 
258  
259
260 #ifdef ULTIPANEL
261 //  #define NEWPANEL  //enable this if you have a click-encoder panel
262   #define SDSUPPORT
263   #define ULTRA_LCD
264   #define LCD_WIDTH 20
265   #define LCD_HEIGHT 4
266   
267 // Preheat Constants
268   #define PLA_PREHEAT_HOTEND_TEMP 180 
269   #define PLA_PREHEAT_HPB_TEMP 70
270   #define PLA_PREHEAT_FAN_SPEED 255             // Insert Value between 0 and 255
271
272   #define ABS_PREHEAT_HOTEND_TEMP 240
273   #define ABS_PREHEAT_HPB_TEMP 100
274   #define ABS_PREHEAT_FAN_SPEED 255             // Insert Value between 0 and 255
275
276 #else //no panel but just lcd 
277   #ifdef ULTRA_LCD
278     #define LCD_WIDTH 16
279     #define LCD_HEIGHT 2    
280   #endif
281 #endif
282
283 // Increase the FAN pwm frequency. Removes the PWM noise but increases heating in the FET/Arduino
284 //#define FAST_PWM_FAN
285
286 // M240  Triggers a camera by emulating a Canon RC-1 Remote
287 // Data from: http://www.doc-diy.net/photo/rc-1_hacked/
288 // #define PHOTOGRAPH_PIN     23
289
290 #include "Configuration_adv.h"
291 #include "thermistortables.h"
292
293 #endif //__CONFIGURATION_H