|
@@ -0,0 +1,719 @@
|
|
1
|
+/**
|
|
2
|
+ * Marlin 3D Printer Firmware
|
|
3
|
+ * Copyright (C) 2016 MarlinFirmware [https://github.com/MarlinFirmware/Marlin]
|
|
4
|
+ *
|
|
5
|
+ * Based on Sprinter and grbl.
|
|
6
|
+ * Copyright (C) 2011 Camiel Gubbels / Erik van der Zalm
|
|
7
|
+ *
|
|
8
|
+ * This program is free software: you can redistribute it and/or modify
|
|
9
|
+ * it under the terms of the GNU General Public License as published by
|
|
10
|
+ * the Free Software Foundation, either version 3 of the License, or
|
|
11
|
+ * (at your option) any later version.
|
|
12
|
+ *
|
|
13
|
+ * This program is distributed in the hope that it will be useful,
|
|
14
|
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
15
|
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
16
|
+ * GNU General Public License for more details.
|
|
17
|
+ *
|
|
18
|
+ * You should have received a copy of the GNU General Public License
|
|
19
|
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
20
|
+ *
|
|
21
|
+ */
|
|
22
|
+
|
|
23
|
+/**
|
|
24
|
+ * Configuration_adv.h
|
|
25
|
+ *
|
|
26
|
+ * Advanced settings.
|
|
27
|
+ * Only change these if you know exactly what you're doing.
|
|
28
|
+ * Some of these settings can damage your printer if improperly set!
|
|
29
|
+ *
|
|
30
|
+ * Basic settings can be found in Configuration.h
|
|
31
|
+ *
|
|
32
|
+ */
|
|
33
|
+#ifndef CONFIGURATION_ADV_H
|
|
34
|
+#define CONFIGURATION_ADV_H
|
|
35
|
+
|
|
36
|
+#include "Conditionals.h"
|
|
37
|
+
|
|
38
|
+// @section temperature
|
|
39
|
+
|
|
40
|
+//===========================================================================
|
|
41
|
+//=============================Thermal Settings ============================
|
|
42
|
+//===========================================================================
|
|
43
|
+
|
|
44
|
+#if DISABLED(PIDTEMPBED)
|
|
45
|
+ #define BED_CHECK_INTERVAL 5000 // ms between checks in bang-bang control
|
|
46
|
+ #if ENABLED(BED_LIMIT_SWITCHING)
|
|
47
|
+ #define BED_HYSTERESIS 2 // Only disable heating if T>target+BED_HYSTERESIS and enable heating if T>target-BED_HYSTERESIS
|
|
48
|
+ #endif
|
|
49
|
+#endif
|
|
50
|
+
|
|
51
|
+/**
|
|
52
|
+ * Thermal Protection protects your printer from damage and fire if a
|
|
53
|
+ * thermistor falls out or temperature sensors fail in any way.
|
|
54
|
+ *
|
|
55
|
+ * The issue: If a thermistor falls out or a temperature sensor fails,
|
|
56
|
+ * Marlin can no longer sense the actual temperature. Since a disconnected
|
|
57
|
+ * thermistor reads as a low temperature, the firmware will keep the heater on.
|
|
58
|
+ *
|
|
59
|
+ * The solution: Once the temperature reaches the target, start observing.
|
|
60
|
+ * If the temperature stays too far below the target (hysteresis) for too long (period),
|
|
61
|
+ * the firmware will halt the machine as a safety precaution.
|
|
62
|
+ *
|
|
63
|
+ * If you get false positives for "Thermal Runaway" increase THERMAL_PROTECTION_HYSTERESIS and/or THERMAL_PROTECTION_PERIOD
|
|
64
|
+ */
|
|
65
|
+#if ENABLED(THERMAL_PROTECTION_HOTENDS)
|
|
66
|
+ #define THERMAL_PROTECTION_PERIOD 40 // Seconds
|
|
67
|
+ #define THERMAL_PROTECTION_HYSTERESIS 4 // Degrees Celsius
|
|
68
|
+
|
|
69
|
+ /**
|
|
70
|
+ * Whenever an M104 or M109 increases the target temperature the firmware will wait for the
|
|
71
|
+ * WATCH_TEMP_PERIOD to expire, and if the temperature hasn't increased by WATCH_TEMP_INCREASE
|
|
72
|
+ * degrees, the machine is halted, requiring a hard reset. This test restarts with any M104/M109,
|
|
73
|
+ * but only if the current temperature is far enough below the target for a reliable test.
|
|
74
|
+ *
|
|
75
|
+ * If you get false positives for "Heating failed" increase WATCH_TEMP_PERIOD and/or decrease WATCH_TEMP_INCREASE
|
|
76
|
+ * WATCH_TEMP_INCREASE should not be below 2.
|
|
77
|
+ */
|
|
78
|
+ #define WATCH_TEMP_PERIOD 20 // Seconds
|
|
79
|
+ #define WATCH_TEMP_INCREASE 2 // Degrees Celsius
|
|
80
|
+#endif
|
|
81
|
+
|
|
82
|
+/**
|
|
83
|
+ * Thermal Protection parameters for the bed are just as above for hotends.
|
|
84
|
+ */
|
|
85
|
+#if ENABLED(THERMAL_PROTECTION_BED)
|
|
86
|
+ #define THERMAL_PROTECTION_BED_PERIOD 20 // Seconds
|
|
87
|
+ #define THERMAL_PROTECTION_BED_HYSTERESIS 2 // Degrees Celsius
|
|
88
|
+
|
|
89
|
+ /**
|
|
90
|
+ * Whenever an M140 or M190 increases the target temperature the firmware will wait for the
|
|
91
|
+ * WATCH_BED_TEMP_PERIOD to expire, and if the temperature hasn't increased by WATCH_BED_TEMP_INCREASE
|
|
92
|
+ * degrees, the machine is halted, requiring a hard reset. This test restarts with any M140/M190,
|
|
93
|
+ * but only if the current temperature is far enough below the target for a reliable test.
|
|
94
|
+ *
|
|
95
|
+ * If you get too many "Heating failed" errors, increase WATCH_BED_TEMP_PERIOD and/or decrease
|
|
96
|
+ * WATCH_BED_TEMP_INCREASE. (WATCH_BED_TEMP_INCREASE should not be below 2.)
|
|
97
|
+ */
|
|
98
|
+ #define WATCH_BED_TEMP_PERIOD 60 // Seconds
|
|
99
|
+ #define WATCH_BED_TEMP_INCREASE 2 // Degrees Celsius
|
|
100
|
+#endif
|
|
101
|
+
|
|
102
|
+#if ENABLED(PIDTEMP)
|
|
103
|
+ // this adds an experimental additional term to the heating power, proportional to the extrusion speed.
|
|
104
|
+ // if Kc is chosen well, the additional required power due to increased melting should be compensated.
|
|
105
|
+ #define PID_ADD_EXTRUSION_RATE
|
|
106
|
+ #if ENABLED(PID_ADD_EXTRUSION_RATE)
|
|
107
|
+ #define DEFAULT_Kc (100) //heating power=Kc*(e_speed)
|
|
108
|
+ #define LPQ_MAX_LEN 50
|
|
109
|
+ #endif
|
|
110
|
+#endif
|
|
111
|
+
|
|
112
|
+/**
|
|
113
|
+ * Automatic Temperature:
|
|
114
|
+ * The hotend target temperature is calculated by all the buffered lines of gcode.
|
|
115
|
+ * The maximum buffered steps/sec of the extruder motor is called "se".
|
|
116
|
+ * Start autotemp mode with M109 S<mintemp> B<maxtemp> F<factor>
|
|
117
|
+ * The target temperature is set to mintemp+factor*se[steps/sec] and is limited by
|
|
118
|
+ * mintemp and maxtemp. Turn this off by executing M109 without F*
|
|
119
|
+ * Also, if the temperature is set to a value below mintemp, it will not be changed by autotemp.
|
|
120
|
+ * On an Ultimaker, some initial testing worked with M109 S215 B260 F1 in the start.gcode
|
|
121
|
+ */
|
|
122
|
+#define AUTOTEMP
|
|
123
|
+#if ENABLED(AUTOTEMP)
|
|
124
|
+ #define AUTOTEMP_OLDWEIGHT 0.98
|
|
125
|
+#endif
|
|
126
|
+
|
|
127
|
+//Show Temperature ADC value
|
|
128
|
+//The M105 command return, besides traditional information, the ADC value read from temperature sensors.
|
|
129
|
+//#define SHOW_TEMP_ADC_VALUES
|
|
130
|
+
|
|
131
|
+// @section extruder
|
|
132
|
+
|
|
133
|
+// extruder run-out prevention.
|
|
134
|
+//if the machine is idle, and the temperature over MINTEMP, every couple of SECONDS some filament is extruded
|
|
135
|
+//#define EXTRUDER_RUNOUT_PREVENT
|
|
136
|
+#define EXTRUDER_RUNOUT_MINTEMP 190
|
|
137
|
+#define EXTRUDER_RUNOUT_SECONDS 30.
|
|
138
|
+#define EXTRUDER_RUNOUT_ESTEPS 14. //mm filament
|
|
139
|
+#define EXTRUDER_RUNOUT_SPEED 1500. //extrusion speed
|
|
140
|
+#define EXTRUDER_RUNOUT_EXTRUDE 100
|
|
141
|
+
|
|
142
|
+// @section temperature
|
|
143
|
+
|
|
144
|
+//These defines help to calibrate the AD595 sensor in case you get wrong temperature measurements.
|
|
145
|
+//The measured temperature is defined as "actualTemp = (measuredTemp * TEMP_SENSOR_AD595_GAIN) + TEMP_SENSOR_AD595_OFFSET"
|
|
146
|
+#define TEMP_SENSOR_AD595_OFFSET 3.0
|
|
147
|
+#define TEMP_SENSOR_AD595_GAIN 2.0
|
|
148
|
+
|
|
149
|
+//This is for controlling a fan to cool down the stepper drivers
|
|
150
|
+//it will turn on when any driver is enabled
|
|
151
|
+//and turn off after the set amount of seconds from last driver being disabled again
|
|
152
|
+#define CONTROLLERFAN_PIN -1 //Pin used for the fan to cool controller (-1 to disable)
|
|
153
|
+#define CONTROLLERFAN_SECS 60 //How many seconds, after all motors were disabled, the fan should run
|
|
154
|
+#define CONTROLLERFAN_SPEED 255 // == full speed
|
|
155
|
+
|
|
156
|
+// When first starting the main fan, run it at full speed for the
|
|
157
|
+// given number of milliseconds. This gets the fan spinning reliably
|
|
158
|
+// before setting a PWM value. (Does not work with software PWM for fan on Sanguinololu)
|
|
159
|
+//#define FAN_KICKSTART_TIME 100
|
|
160
|
+
|
|
161
|
+// This defines the minimal speed for the main fan, run in PWM mode
|
|
162
|
+// to enable uncomment and set minimal PWM speed for reliable running (1-255)
|
|
163
|
+// if fan speed is [1 - (FAN_MIN_PWM-1)] it is set to FAN_MIN_PWM
|
|
164
|
+//#define FAN_MIN_PWM 50
|
|
165
|
+
|
|
166
|
+// @section extruder
|
|
167
|
+
|
|
168
|
+// Extruder cooling fans
|
|
169
|
+// Configure fan pin outputs to automatically turn on/off when the associated
|
|
170
|
+// extruder temperature is above/below EXTRUDER_AUTO_FAN_TEMPERATURE.
|
|
171
|
+// Multiple extruders can be assigned to the same pin in which case
|
|
172
|
+// the fan will turn on when any selected extruder is above the threshold.
|
|
173
|
+#define EXTRUDER_0_AUTO_FAN_PIN 7
|
|
174
|
+#define EXTRUDER_1_AUTO_FAN_PIN 7
|
|
175
|
+#define EXTRUDER_2_AUTO_FAN_PIN -1
|
|
176
|
+#define EXTRUDER_3_AUTO_FAN_PIN -1
|
|
177
|
+#define EXTRUDER_AUTO_FAN_TEMPERATURE 35
|
|
178
|
+#define EXTRUDER_AUTO_FAN_SPEED 255 // == full speed
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+//===========================================================================
|
|
182
|
+//=============================Mechanical Settings===========================
|
|
183
|
+//===========================================================================
|
|
184
|
+
|
|
185
|
+// @section homing
|
|
186
|
+
|
|
187
|
+#define ENDSTOPS_ONLY_FOR_HOMING // If defined the endstops will only be used for homing
|
|
188
|
+
|
|
189
|
+// @section extras
|
|
190
|
+
|
|
191
|
+//#define Z_LATE_ENABLE // Enable Z the last moment. Needed if your Z driver overheats.
|
|
192
|
+
|
|
193
|
+// A single Z stepper driver is usually used to drive 2 stepper motors.
|
|
194
|
+// Uncomment this define to utilize a separate stepper driver for each Z axis motor.
|
|
195
|
+// Only a few motherboards support this, like RAMPS, which have dual extruder support (the 2nd, often unused, extruder driver is used
|
|
196
|
+// to control the 2nd Z axis stepper motor). The pins are currently only defined for a RAMPS motherboards.
|
|
197
|
+// On a RAMPS (or other 5 driver) motherboard, using this feature will limit you to using 1 extruder.
|
|
198
|
+//#define Z_DUAL_STEPPER_DRIVERS
|
|
199
|
+
|
|
200
|
+#if ENABLED(Z_DUAL_STEPPER_DRIVERS)
|
|
201
|
+
|
|
202
|
+ // Z_DUAL_ENDSTOPS is a feature to enable the use of 2 endstops for both Z steppers - Let's call them Z stepper and Z2 stepper.
|
|
203
|
+ // That way the machine is capable to align the bed during home, since both Z steppers are homed.
|
|
204
|
+ // There is also an implementation of M666 (software endstops adjustment) to this feature.
|
|
205
|
+ // After Z homing, this adjustment is applied to just one of the steppers in order to align the bed.
|
|
206
|
+ // One just need to home the Z axis and measure the distance difference between both Z axis and apply the math: Z adjust = Z - Z2.
|
|
207
|
+ // If the Z stepper axis is closer to the bed, the measure Z > Z2 (yes, it is.. think about it) and the Z adjust would be positive.
|
|
208
|
+ // Play a little bit with small adjustments (0.5mm) and check the behaviour.
|
|
209
|
+ // The M119 (endstops report) will start reporting the Z2 Endstop as well.
|
|
210
|
+
|
|
211
|
+ //#define Z_DUAL_ENDSTOPS
|
|
212
|
+
|
|
213
|
+ #if ENABLED(Z_DUAL_ENDSTOPS)
|
|
214
|
+ #define Z2_USE_ENDSTOP _XMAX_
|
|
215
|
+ #endif
|
|
216
|
+
|
|
217
|
+#endif // Z_DUAL_STEPPER_DRIVERS
|
|
218
|
+
|
|
219
|
+// Same again but for Y Axis.
|
|
220
|
+//#define Y_DUAL_STEPPER_DRIVERS
|
|
221
|
+
|
|
222
|
+#if ENABLED(Y_DUAL_STEPPER_DRIVERS)
|
|
223
|
+ // Define if the two Y drives need to rotate in opposite directions
|
|
224
|
+ #define INVERT_Y2_VS_Y_DIR true
|
|
225
|
+#endif
|
|
226
|
+
|
|
227
|
+// Enable this for dual x-carriage printers.
|
|
228
|
+// A dual x-carriage design has the advantage that the inactive extruder can be parked which
|
|
229
|
+// prevents hot-end ooze contaminating the print. It also reduces the weight of each x-carriage
|
|
230
|
+// allowing faster printing speeds. Connect your X2 stepper to the first unused E plug.
|
|
231
|
+//#define DUAL_X_CARRIAGE
|
|
232
|
+#if ENABLED(DUAL_X_CARRIAGE)
|
|
233
|
+ // Configuration for second X-carriage
|
|
234
|
+ // Note: the first x-carriage is defined as the x-carriage which homes to the minimum endstop;
|
|
235
|
+ // the second x-carriage always homes to the maximum endstop.
|
|
236
|
+ #define X2_MIN_POS 80 // set minimum to ensure second x-carriage doesn't hit the parked first X-carriage
|
|
237
|
+ #define X2_MAX_POS 353 // set maximum to the distance between toolheads when both heads are homed
|
|
238
|
+ #define X2_HOME_DIR 1 // the second X-carriage always homes to the maximum endstop position
|
|
239
|
+ #define X2_HOME_POS X2_MAX_POS // default home position is the maximum carriage position
|
|
240
|
+ // However: In this mode the HOTEND_OFFSET_X value for the second extruder provides a software
|
|
241
|
+ // override for X2_HOME_POS. This also allow recalibration of the distance between the two endstops
|
|
242
|
+ // without modifying the firmware (through the "M218 T1 X???" command).
|
|
243
|
+ // Remember: you should set the second extruder x-offset to 0 in your slicer.
|
|
244
|
+
|
|
245
|
+ // There are a few selectable movement modes for dual x-carriages using M605 S<mode>
|
|
246
|
+ // Mode 0: Full control. The slicer has full control over both x-carriages and can achieve optimal travel results
|
|
247
|
+ // as long as it supports dual x-carriages. (M605 S0)
|
|
248
|
+ // Mode 1: Auto-park mode. The firmware will automatically park and unpark the x-carriages on tool changes so
|
|
249
|
+ // that additional slicer support is not required. (M605 S1)
|
|
250
|
+ // Mode 2: Duplication mode. The firmware will transparently make the second x-carriage and extruder copy all
|
|
251
|
+ // actions of the first x-carriage. This allows the printer to print 2 arbitrary items at
|
|
252
|
+ // once. (2nd extruder x offset and temp offset are set using: M605 S2 [Xnnn] [Rmmm])
|
|
253
|
+
|
|
254
|
+ // This is the default power-up mode which can be later using M605.
|
|
255
|
+ #define DEFAULT_DUAL_X_CARRIAGE_MODE 0
|
|
256
|
+
|
|
257
|
+ // Default settings in "Auto-park Mode"
|
|
258
|
+ #define TOOLCHANGE_PARK_ZLIFT 0.2 // the distance to raise Z axis when parking an extruder
|
|
259
|
+ #define TOOLCHANGE_UNPARK_ZLIFT 1 // the distance to raise Z axis when unparking an extruder
|
|
260
|
+
|
|
261
|
+ // Default x offset in duplication mode (typically set to half print bed width)
|
|
262
|
+ #define DEFAULT_DUPLICATION_X_OFFSET 100
|
|
263
|
+
|
|
264
|
+#endif //DUAL_X_CARRIAGE
|
|
265
|
+
|
|
266
|
+// @section homing
|
|
267
|
+
|
|
268
|
+//homing hits the endstop, then retracts by this distance, before it tries to slowly bump again:
|
|
269
|
+#define X_HOME_BUMP_MM 5
|
|
270
|
+#define Y_HOME_BUMP_MM 5
|
|
271
|
+#define Z_HOME_BUMP_MM 2
|
|
272
|
+#define HOMING_BUMP_DIVISOR {2, 2, 4} // Re-Bump Speed Divisor (Divides the Homing Feedrate)
|
|
273
|
+//#define QUICK_HOME //if this is defined, if both x and y are to be homed, a diagonal move will be performed initially.
|
|
274
|
+
|
|
275
|
+// When G28 is called, this option will make Y home before X
|
|
276
|
+#define HOME_Y_BEFORE_X
|
|
277
|
+
|
|
278
|
+// @section machine
|
|
279
|
+
|
|
280
|
+#define AXIS_RELATIVE_MODES {false, false, false, false}
|
|
281
|
+
|
|
282
|
+//By default pololu step drivers require an active high signal. However, some high power drivers require an active low signal as step.
|
|
283
|
+#define INVERT_X_STEP_PIN false
|
|
284
|
+#define INVERT_Y_STEP_PIN false
|
|
285
|
+#define INVERT_Z_STEP_PIN false
|
|
286
|
+#define INVERT_E_STEP_PIN false
|
|
287
|
+
|
|
288
|
+// Default stepper release if idle. Set to 0 to deactivate.
|
|
289
|
+// Steppers will shut down DEFAULT_STEPPER_DEACTIVE_TIME seconds after the last move when DISABLE_INACTIVE_? is true.
|
|
290
|
+// Time can be set by M18 and M84.
|
|
291
|
+#define DEFAULT_STEPPER_DEACTIVE_TIME 120
|
|
292
|
+#define DISABLE_INACTIVE_X true
|
|
293
|
+#define DISABLE_INACTIVE_Y true
|
|
294
|
+#define DISABLE_INACTIVE_Z true // set to false if the nozzle will fall down on your printed part when print has finished.
|
|
295
|
+#define DISABLE_INACTIVE_E true
|
|
296
|
+
|
|
297
|
+#define DEFAULT_MINIMUMFEEDRATE 0.0 // minimum feedrate
|
|
298
|
+#define DEFAULT_MINTRAVELFEEDRATE 0.0
|
|
299
|
+
|
|
300
|
+// @section lcd
|
|
301
|
+
|
|
302
|
+#if ENABLED(ULTIPANEL)
|
|
303
|
+ #define MANUAL_FEEDRATE {50*60, 50*60, 4*60, 60} // Feedrates for manual moves along X, Y, Z, E from panel
|
|
304
|
+ #define ULTIPANEL_FEEDMULTIPLY // Comment to disable setting feedrate multiplier via encoder
|
|
305
|
+#endif
|
|
306
|
+
|
|
307
|
+// @section extras
|
|
308
|
+
|
|
309
|
+// minimum time in microseconds that a movement needs to take if the buffer is emptied.
|
|
310
|
+#define DEFAULT_MINSEGMENTTIME 20000
|
|
311
|
+
|
|
312
|
+// If defined the movements slow down when the look ahead buffer is only half full
|
|
313
|
+#define SLOWDOWN
|
|
314
|
+
|
|
315
|
+// Frequency limit
|
|
316
|
+// See nophead's blog for more info
|
|
317
|
+// Not working O
|
|
318
|
+//#define XY_FREQUENCY_LIMIT 15
|
|
319
|
+
|
|
320
|
+// Minimum planner junction speed. Sets the default minimum speed the planner plans for at the end
|
|
321
|
+// of the buffer and all stops. This should not be much greater than zero and should only be changed
|
|
322
|
+// if unwanted behavior is observed on a user's machine when running at very slow speeds.
|
|
323
|
+#define MINIMUM_PLANNER_SPEED 0.05// (mm/sec)
|
|
324
|
+
|
|
325
|
+// Microstep setting (Only functional when stepper driver microstep pins are connected to MCU.
|
|
326
|
+#define MICROSTEP_MODES {16,16,16,16,16} // [1,2,4,8,16]
|
|
327
|
+
|
|
328
|
+// Motor Current setting (Only functional when motor driver current ref pins are connected to a digital trimpot on supported boards)
|
|
329
|
+#define DIGIPOT_MOTOR_CURRENT {135,135,135,135,135} // Values 0-255 (RAMBO 135 = ~0.75A, 185 = ~1A)
|
|
330
|
+
|
|
331
|
+// Motor Current controlled via PWM (Overridable on supported boards with PWM-driven motor driver current)
|
|
332
|
+//#define PWM_MOTOR_CURRENT {1300, 1300, 1250} // Values in milliamps
|
|
333
|
+
|
|
334
|
+// uncomment to enable an I2C based DIGIPOT like on the Azteeg X3 Pro
|
|
335
|
+//#define DIGIPOT_I2C
|
|
336
|
+// Number of channels available for I2C digipot, For Azteeg X3 Pro we have 8
|
|
337
|
+#define DIGIPOT_I2C_NUM_CHANNELS 8
|
|
338
|
+// actual motor currents in Amps, need as many here as DIGIPOT_I2C_NUM_CHANNELS
|
|
339
|
+#define DIGIPOT_I2C_MOTOR_CURRENTS {1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0, 1.0}
|
|
340
|
+
|
|
341
|
+//===========================================================================
|
|
342
|
+//=============================Additional Features===========================
|
|
343
|
+//===========================================================================
|
|
344
|
+
|
|
345
|
+#define ENCODER_RATE_MULTIPLIER // If defined, certain menu edit operations automatically multiply the steps when the encoder is moved quickly
|
|
346
|
+#define ENCODER_10X_STEPS_PER_SEC 75 // If the encoder steps per sec exceeds this value, multiply steps moved x10 to quickly advance the value
|
|
347
|
+#define ENCODER_100X_STEPS_PER_SEC 160 // If the encoder steps per sec exceeds this value, multiply steps moved x100 to really quickly advance the value
|
|
348
|
+
|
|
349
|
+//#define CHDK 4 //Pin for triggering CHDK to take a picture see how to use it here http://captain-slow.dk/2014/03/09/3d-printing-timelapses/
|
|
350
|
+#define CHDK_DELAY 50 //How long in ms the pin should stay HIGH before going LOW again
|
|
351
|
+
|
|
352
|
+// @section lcd
|
|
353
|
+
|
|
354
|
+#if ENABLED(SDSUPPORT)
|
|
355
|
+
|
|
356
|
+ // Some RAMPS and other boards don't detect when an SD card is inserted. You can work
|
|
357
|
+ // around this by connecting a push button or single throw switch to the pin defined
|
|
358
|
+ // as SD_DETECT_PIN in your board's pins definitions.
|
|
359
|
+ // This setting should be disabled unless you are using a push button, pulling the pin to ground.
|
|
360
|
+ // Note: This is always disabled for ULTIPANEL (except ELB_FULL_GRAPHIC_CONTROLLER).
|
|
361
|
+ #define SD_DETECT_INVERTED
|
|
362
|
+
|
|
363
|
+ #define SD_FINISHED_STEPPERRELEASE true //if sd support and the file is finished: disable steppers?
|
|
364
|
+ #define SD_FINISHED_RELEASECOMMAND "M84 X Y Z E" // You might want to keep the z enabled so your bed stays in place.
|
|
365
|
+
|
|
366
|
+ #define SDCARD_RATHERRECENTFIRST //reverse file order of sd card menu display. Its sorted practically after the file system block order.
|
|
367
|
+ // if a file is deleted, it frees a block. hence, the order is not purely chronological. To still have auto0.g accessible, there is again the option to do that.
|
|
368
|
+ // using:
|
|
369
|
+ //#define MENU_ADDAUTOSTART
|
|
370
|
+
|
|
371
|
+ // Show a progress bar on HD44780 LCDs for SD printing
|
|
372
|
+ //#define LCD_PROGRESS_BAR
|
|
373
|
+
|
|
374
|
+ #if ENABLED(LCD_PROGRESS_BAR)
|
|
375
|
+ // Amount of time (ms) to show the bar
|
|
376
|
+ #define PROGRESS_BAR_BAR_TIME 2000
|
|
377
|
+ // Amount of time (ms) to show the status message
|
|
378
|
+ #define PROGRESS_BAR_MSG_TIME 3000
|
|
379
|
+ // Amount of time (ms) to retain the status message (0=forever)
|
|
380
|
+ #define PROGRESS_MSG_EXPIRE 0
|
|
381
|
+ // Enable this to show messages for MSG_TIME then hide them
|
|
382
|
+ //#define PROGRESS_MSG_ONCE
|
|
383
|
+ #endif
|
|
384
|
+
|
|
385
|
+ // This allows hosts to request long names for files and folders with M33
|
|
386
|
+ //#define LONG_FILENAME_HOST_SUPPORT
|
|
387
|
+
|
|
388
|
+ // This option allows you to abort SD printing when any endstop is triggered.
|
|
389
|
+ // This feature must be enabled with "M540 S1" or from the LCD menu.
|
|
390
|
+ // To have any effect, endstops must be enabled during SD printing.
|
|
391
|
+ // With ENDSTOPS_ONLY_FOR_HOMING you must send "M120" to enable endstops.
|
|
392
|
+ //#define ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED
|
|
393
|
+
|
|
394
|
+#endif // SDSUPPORT
|
|
395
|
+
|
|
396
|
+// for dogm lcd displays you can choose some additional fonts:
|
|
397
|
+#if ENABLED(DOGLCD)
|
|
398
|
+ // save 3120 bytes of PROGMEM by commenting out #define USE_BIG_EDIT_FONT
|
|
399
|
+ // we don't have a big font for Cyrillic, Kana
|
|
400
|
+ //#define USE_BIG_EDIT_FONT
|
|
401
|
+
|
|
402
|
+ // If you have spare 2300Byte of progmem and want to use a
|
|
403
|
+ // smaller font on the Info-screen uncomment the next line.
|
|
404
|
+ //#define USE_SMALL_INFOFONT
|
|
405
|
+#endif // DOGLCD
|
|
406
|
+
|
|
407
|
+// @section more
|
|
408
|
+
|
|
409
|
+// The hardware watchdog should reset the microcontroller disabling all outputs, in case the firmware gets stuck and doesn't do temperature regulation.
|
|
410
|
+#define USE_WATCHDOG
|
|
411
|
+
|
|
412
|
+#if ENABLED(USE_WATCHDOG)
|
|
413
|
+ // If you have a watchdog reboot in an ArduinoMega2560 then the device will hang forever, as a watchdog reset will leave the watchdog on.
|
|
414
|
+ // The "WATCHDOG_RESET_MANUAL" goes around this by not using the hardware reset.
|
|
415
|
+ // However, THIS FEATURE IS UNSAFE!, as it will only work if interrupts are disabled. And the code could hang in an interrupt routine with interrupts disabled.
|
|
416
|
+ //#define WATCHDOG_RESET_MANUAL
|
|
417
|
+#endif
|
|
418
|
+
|
|
419
|
+// @section lcd
|
|
420
|
+
|
|
421
|
+// Babystepping enables the user to control the axis in tiny amounts, independently from the normal printing process
|
|
422
|
+// it can e.g. be used to change z-positions in the print startup phase in real-time
|
|
423
|
+// does not respect endstops!
|
|
424
|
+//#define BABYSTEPPING
|
|
425
|
+#if ENABLED(BABYSTEPPING)
|
|
426
|
+ #define BABYSTEP_XY //not only z, but also XY in the menu. more clutter, more functions
|
|
427
|
+ //not implemented for deltabots!
|
|
428
|
+ #define BABYSTEP_INVERT_Z false //true for inverse movements in Z
|
|
429
|
+ #define BABYSTEP_MULTIPLICATOR 1 //faster movements
|
|
430
|
+#endif
|
|
431
|
+
|
|
432
|
+// @section extruder
|
|
433
|
+
|
|
434
|
+// extruder advance constant (s2/mm3)
|
|
435
|
+//
|
|
436
|
+// advance (steps) = STEPS_PER_CUBIC_MM_E * EXTRUDER_ADVANCE_K * cubic mm per second ^ 2
|
|
437
|
+//
|
|
438
|
+// Hooke's law says: force = k * distance
|
|
439
|
+// Bernoulli's principle says: v ^ 2 / 2 + g . h + pressure / density = constant
|
|
440
|
+// so: v ^ 2 is proportional to number of steps we advance the extruder
|
|
441
|
+//#define ADVANCE
|
|
442
|
+
|
|
443
|
+#if ENABLED(ADVANCE)
|
|
444
|
+ #define EXTRUDER_ADVANCE_K .0
|
|
445
|
+ #define D_FILAMENT 2.85
|
|
446
|
+#endif
|
|
447
|
+
|
|
448
|
+// Implementation of a linear pressure control
|
|
449
|
+// Assumption: advance = k * (delta velocity)
|
|
450
|
+// K=0 means advance disabled. A good value for a gregs wade extruder will be around K=75
|
|
451
|
+//#define LIN_ADVANCE
|
|
452
|
+
|
|
453
|
+#if ENABLED(LIN_ADVANCE)
|
|
454
|
+ #define LIN_ADVANCE_K 75
|
|
455
|
+#endif
|
|
456
|
+
|
|
457
|
+// @section leveling
|
|
458
|
+
|
|
459
|
+// Default mesh area is an area with an inset margin on the print area.
|
|
460
|
+// Below are the macros that are used to define the borders for the mesh area,
|
|
461
|
+// made available here for specialized needs, ie dual extruder setup.
|
|
462
|
+#if ENABLED(MESH_BED_LEVELING)
|
|
463
|
+ #define MESH_MIN_X (X_MIN_POS + MESH_INSET)
|
|
464
|
+ #define MESH_MAX_X (X_MAX_POS - (MESH_INSET))
|
|
465
|
+ #define MESH_MIN_Y (Y_MIN_POS + MESH_INSET)
|
|
466
|
+ #define MESH_MAX_Y (Y_MAX_POS - (MESH_INSET))
|
|
467
|
+#endif
|
|
468
|
+
|
|
469
|
+// @section extras
|
|
470
|
+
|
|
471
|
+// Arc interpretation settings:
|
|
472
|
+#define ARC_SUPPORT // Disabling this saves ~2738 bytes
|
|
473
|
+#define MM_PER_ARC_SEGMENT 1
|
|
474
|
+#define N_ARC_CORRECTION 25
|
|
475
|
+
|
|
476
|
+// Support for G5 with XYZE destination and IJPQ offsets. Requires ~2666 bytes.
|
|
477
|
+//#define BEZIER_CURVE_SUPPORT
|
|
478
|
+
|
|
479
|
+const unsigned int dropsegments = 5; //everything with less than this number of steps will be ignored as move and joined with the next movement
|
|
480
|
+
|
|
481
|
+// @section temperature
|
|
482
|
+
|
|
483
|
+// Control heater 0 and heater 1 in parallel.
|
|
484
|
+//#define HEATERS_PARALLEL
|
|
485
|
+
|
|
486
|
+//===========================================================================
|
|
487
|
+//================================= Buffers =================================
|
|
488
|
+//===========================================================================
|
|
489
|
+
|
|
490
|
+// @section hidden
|
|
491
|
+
|
|
492
|
+// The number of linear motions that can be in the plan at any give time.
|
|
493
|
+// THE BLOCK_BUFFER_SIZE NEEDS TO BE A POWER OF 2, i.g. 8,16,32 because shifts and ors are used to do the ring-buffering.
|
|
494
|
+#if ENABLED(SDSUPPORT)
|
|
495
|
+ #define BLOCK_BUFFER_SIZE 16 // SD,LCD,Buttons take more memory, block buffer needs to be smaller
|
|
496
|
+#else
|
|
497
|
+ #define BLOCK_BUFFER_SIZE 16 // maximize block buffer
|
|
498
|
+#endif
|
|
499
|
+
|
|
500
|
+// @section more
|
|
501
|
+
|
|
502
|
+//The ASCII buffer for receiving from the serial:
|
|
503
|
+#define MAX_CMD_SIZE 96
|
|
504
|
+#define BUFSIZE 4
|
|
505
|
+
|
|
506
|
+// Bad Serial-connections can miss a received command by sending an 'ok'
|
|
507
|
+// Therefore some clients abort after 30 seconds in a timeout.
|
|
508
|
+// Some other clients start sending commands while receiving a 'wait'.
|
|
509
|
+// This "wait" is only sent when the buffer is empty. 1 second is a good value here.
|
|
510
|
+//#define NO_TIMEOUTS 1000 // Milliseconds
|
|
511
|
+
|
|
512
|
+// Some clients will have this feature soon. This could make the NO_TIMEOUTS unnecessary.
|
|
513
|
+//#define ADVANCED_OK
|
|
514
|
+
|
|
515
|
+// @section fwretract
|
|
516
|
+
|
|
517
|
+// Firmware based and LCD controlled retract
|
|
518
|
+// M207 and M208 can be used to define parameters for the retraction.
|
|
519
|
+// The retraction can be called by the slicer using G10 and G11
|
|
520
|
+// until then, intended retractions can be detected by moves that only extrude and the direction.
|
|
521
|
+// the moves are than replaced by the firmware controlled ones.
|
|
522
|
+
|
|
523
|
+//#define FWRETRACT //ONLY PARTIALLY TESTED
|
|
524
|
+#if ENABLED(FWRETRACT)
|
|
525
|
+ #define MIN_RETRACT 0.1 //minimum extruded mm to accept a automatic gcode retraction attempt
|
|
526
|
+ #define RETRACT_LENGTH 3 //default retract length (positive mm)
|
|
527
|
+ #define RETRACT_LENGTH_SWAP 13 //default swap retract length (positive mm), for extruder change
|
|
528
|
+ #define RETRACT_FEEDRATE 45 //default feedrate for retracting (mm/s)
|
|
529
|
+ #define RETRACT_ZLIFT 0 //default retract Z-lift
|
|
530
|
+ #define RETRACT_RECOVER_LENGTH 0 //default additional recover length (mm, added to retract length when recovering)
|
|
531
|
+ #define RETRACT_RECOVER_LENGTH_SWAP 0 //default additional swap recover length (mm, added to retract length when recovering from extruder change)
|
|
532
|
+ #define RETRACT_RECOVER_FEEDRATE 8 //default feedrate for recovering from retraction (mm/s)
|
|
533
|
+#endif
|
|
534
|
+
|
|
535
|
+// Add support for experimental filament exchange support M600; requires display
|
|
536
|
+#if ENABLED(ULTIPANEL)
|
|
537
|
+ //#define FILAMENTCHANGEENABLE
|
|
538
|
+ #if ENABLED(FILAMENTCHANGEENABLE)
|
|
539
|
+ #define FILAMENTCHANGE_XPOS 30
|
|
540
|
+ #define FILAMENTCHANGE_YPOS 10
|
|
541
|
+ #define FILAMENTCHANGE_ZADD 10
|
|
542
|
+ #define FILAMENTCHANGE_FIRSTRETRACT -1
|
|
543
|
+ //#define FILAMENTCHANGE_FINALRETRACT -100
|
|
544
|
+ //#define AUTO_FILAMENT_CHANGE //This extrude filament until you press the button on LCD
|
|
545
|
+ //#define AUTO_FILAMENT_CHANGE_LENGTH 0.04 //Extrusion length on automatic extrusion loop
|
|
546
|
+ //#define AUTO_FILAMENT_CHANGE_FEEDRATE 300 //Extrusion feedrate (mm/min) on automatic extrusion loop
|
|
547
|
+ #endif
|
|
548
|
+#endif
|
|
549
|
+
|
|
550
|
+/******************************************************************************\
|
|
551
|
+ * enable this section if you have TMC26X motor drivers.
|
|
552
|
+ * you need to import the TMC26XStepper library into the Arduino IDE for this
|
|
553
|
+ ******************************************************************************/
|
|
554
|
+
|
|
555
|
+// @section tmc
|
|
556
|
+
|
|
557
|
+//#define HAVE_TMCDRIVER
|
|
558
|
+#if ENABLED(HAVE_TMCDRIVER)
|
|
559
|
+
|
|
560
|
+ //#define X_IS_TMC
|
|
561
|
+ #define X_MAX_CURRENT 1000 //in mA
|
|
562
|
+ #define X_SENSE_RESISTOR 91 //in mOhms
|
|
563
|
+ #define X_MICROSTEPS 16 //number of microsteps
|
|
564
|
+
|
|
565
|
+ //#define X2_IS_TMC
|
|
566
|
+ #define X2_MAX_CURRENT 1000 //in mA
|
|
567
|
+ #define X2_SENSE_RESISTOR 91 //in mOhms
|
|
568
|
+ #define X2_MICROSTEPS 16 //number of microsteps
|
|
569
|
+
|
|
570
|
+ //#define Y_IS_TMC
|
|
571
|
+ #define Y_MAX_CURRENT 1000 //in mA
|
|
572
|
+ #define Y_SENSE_RESISTOR 91 //in mOhms
|
|
573
|
+ #define Y_MICROSTEPS 16 //number of microsteps
|
|
574
|
+
|
|
575
|
+ //#define Y2_IS_TMC
|
|
576
|
+ #define Y2_MAX_CURRENT 1000 //in mA
|
|
577
|
+ #define Y2_SENSE_RESISTOR 91 //in mOhms
|
|
578
|
+ #define Y2_MICROSTEPS 16 //number of microsteps
|
|
579
|
+
|
|
580
|
+ //#define Z_IS_TMC
|
|
581
|
+ #define Z_MAX_CURRENT 1000 //in mA
|
|
582
|
+ #define Z_SENSE_RESISTOR 91 //in mOhms
|
|
583
|
+ #define Z_MICROSTEPS 16 //number of microsteps
|
|
584
|
+
|
|
585
|
+ //#define Z2_IS_TMC
|
|
586
|
+ #define Z2_MAX_CURRENT 1000 //in mA
|
|
587
|
+ #define Z2_SENSE_RESISTOR 91 //in mOhms
|
|
588
|
+ #define Z2_MICROSTEPS 16 //number of microsteps
|
|
589
|
+
|
|
590
|
+ //#define E0_IS_TMC
|
|
591
|
+ #define E0_MAX_CURRENT 1000 //in mA
|
|
592
|
+ #define E0_SENSE_RESISTOR 91 //in mOhms
|
|
593
|
+ #define E0_MICROSTEPS 16 //number of microsteps
|
|
594
|
+
|
|
595
|
+ //#define E1_IS_TMC
|
|
596
|
+ #define E1_MAX_CURRENT 1000 //in mA
|
|
597
|
+ #define E1_SENSE_RESISTOR 91 //in mOhms
|
|
598
|
+ #define E1_MICROSTEPS 16 //number of microsteps
|
|
599
|
+
|
|
600
|
+ //#define E2_IS_TMC
|
|
601
|
+ #define E2_MAX_CURRENT 1000 //in mA
|
|
602
|
+ #define E2_SENSE_RESISTOR 91 //in mOhms
|
|
603
|
+ #define E2_MICROSTEPS 16 //number of microsteps
|
|
604
|
+
|
|
605
|
+ //#define E3_IS_TMC
|
|
606
|
+ #define E3_MAX_CURRENT 1000 //in mA
|
|
607
|
+ #define E3_SENSE_RESISTOR 91 //in mOhms
|
|
608
|
+ #define E3_MICROSTEPS 16 //number of microsteps
|
|
609
|
+
|
|
610
|
+#endif
|
|
611
|
+
|
|
612
|
+/******************************************************************************\
|
|
613
|
+ * enable this section if you have L6470 motor drivers.
|
|
614
|
+ * you need to import the L6470 library into the Arduino IDE for this
|
|
615
|
+ ******************************************************************************/
|
|
616
|
+
|
|
617
|
+// @section l6470
|
|
618
|
+
|
|
619
|
+//#define HAVE_L6470DRIVER
|
|
620
|
+#if ENABLED(HAVE_L6470DRIVER)
|
|
621
|
+
|
|
622
|
+ //#define X_IS_L6470
|
|
623
|
+ #define X_MICROSTEPS 16 //number of microsteps
|
|
624
|
+ #define X_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
625
|
+ #define X_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
626
|
+ #define X_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
627
|
+
|
|
628
|
+ //#define X2_IS_L6470
|
|
629
|
+ #define X2_MICROSTEPS 16 //number of microsteps
|
|
630
|
+ #define X2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
631
|
+ #define X2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
632
|
+ #define X2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
633
|
+
|
|
634
|
+ //#define Y_IS_L6470
|
|
635
|
+ #define Y_MICROSTEPS 16 //number of microsteps
|
|
636
|
+ #define Y_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
637
|
+ #define Y_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
638
|
+ #define Y_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
639
|
+
|
|
640
|
+ //#define Y2_IS_L6470
|
|
641
|
+ #define Y2_MICROSTEPS 16 //number of microsteps
|
|
642
|
+ #define Y2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
643
|
+ #define Y2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
644
|
+ #define Y2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
645
|
+
|
|
646
|
+ //#define Z_IS_L6470
|
|
647
|
+ #define Z_MICROSTEPS 16 //number of microsteps
|
|
648
|
+ #define Z_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
649
|
+ #define Z_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
650
|
+ #define Z_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
651
|
+
|
|
652
|
+ //#define Z2_IS_L6470
|
|
653
|
+ #define Z2_MICROSTEPS 16 //number of microsteps
|
|
654
|
+ #define Z2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
655
|
+ #define Z2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
656
|
+ #define Z2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
657
|
+
|
|
658
|
+ //#define E0_IS_L6470
|
|
659
|
+ #define E0_MICROSTEPS 16 //number of microsteps
|
|
660
|
+ #define E0_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
661
|
+ #define E0_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
662
|
+ #define E0_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
663
|
+
|
|
664
|
+ //#define E1_IS_L6470
|
|
665
|
+ #define E1_MICROSTEPS 16 //number of microsteps
|
|
666
|
+ #define E1_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
667
|
+ #define E1_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
668
|
+ #define E1_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
669
|
+
|
|
670
|
+ //#define E2_IS_L6470
|
|
671
|
+ #define E2_MICROSTEPS 16 //number of microsteps
|
|
672
|
+ #define E2_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
673
|
+ #define E2_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
674
|
+ #define E2_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
675
|
+
|
|
676
|
+ //#define E3_IS_L6470
|
|
677
|
+ #define E3_MICROSTEPS 16 //number of microsteps
|
|
678
|
+ #define E3_K_VAL 50 // 0 - 255, Higher values, are higher power. Be careful not to go too high
|
|
679
|
+ #define E3_OVERCURRENT 2000 //maxc current in mA. If the current goes over this value, the driver will switch off
|
|
680
|
+ #define E3_STALLCURRENT 1500 //current in mA where the driver will detect a stall
|
|
681
|
+
|
|
682
|
+#endif
|
|
683
|
+
|
|
684
|
+/**
|
|
685
|
+ * TWI/I2C BUS
|
|
686
|
+ *
|
|
687
|
+ * This feature is an EXPERIMENTAL feature so it shall not be used on production
|
|
688
|
+ * machines. Enabling this will allow you to send and receive I2C data from slave
|
|
689
|
+ * devices on the bus.
|
|
690
|
+ *
|
|
691
|
+ * ; Example #1
|
|
692
|
+ * ; This macro send the string "Marlin" to the slave device with address 0x63
|
|
693
|
+ * ; It uses multiple M155 commands with one B<base 10> arg
|
|
694
|
+ * M155 A63 ; Target slave address
|
|
695
|
+ * M155 B77 ; M
|
|
696
|
+ * M155 B97 ; a
|
|
697
|
+ * M155 B114 ; r
|
|
698
|
+ * M155 B108 ; l
|
|
699
|
+ * M155 B105 ; i
|
|
700
|
+ * M155 B110 ; n
|
|
701
|
+ * M155 S1 ; Send the current buffer
|
|
702
|
+ *
|
|
703
|
+ * ; Example #2
|
|
704
|
+ * ; Request 6 bytes from slave device with address 0x63
|
|
705
|
+ * M156 A63 B5
|
|
706
|
+ *
|
|
707
|
+ * ; Example #3
|
|
708
|
+ * ; Example serial output of a M156 request
|
|
709
|
+ * echo:i2c-reply: from:63 bytes:5 data:hello
|
|
710
|
+ */
|
|
711
|
+
|
|
712
|
+// @section i2cbus
|
|
713
|
+
|
|
714
|
+//#define EXPERIMENTAL_I2CBUS
|
|
715
|
+
|
|
716
|
+#include "Conditionals.h"
|
|
717
|
+#include "SanityCheck.h"
|
|
718
|
+
|
|
719
|
+#endif //CONFIGURATION_ADV_H
|