Selaa lähdekoodia

Include bed hysteresis setting in the example configs

gralco 9 vuotta sitten
vanhempi
commit
69c00aea4c

+ 2
- 1
Marlin/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109/M190 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
200
 #define TEMP_BED_RESIDENCY_TIME 10  // (seconds)
201
 #define TEMP_BED_RESIDENCY_TIME 10  // (seconds)
201
 #define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
202
 #define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
202
 #define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
203
 #define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.

+ 6
- 1
Marlin/example_configurations/Felix/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 15  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 15  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/Felix/Configuration_DUAL.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 15  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 15  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/Hephestos/Configuration.h Näytä tiedosto

195
 //#define TEMP_SENSOR_1_AS_REDUNDANT
195
 //#define TEMP_SENSOR_1_AS_REDUNDANT
196
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
196
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
197
 
197
 
198
-// Actual temperature must be close to target for this long before M109 returns success
198
+// Extruder temperature must be close to target for this long before M109 returns success
199
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
199
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
200
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
200
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
201
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
201
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
202
 
202
 
203
+// Bed temperature must be close to target for this long before M190 returns success
204
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
205
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
206
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
207
+
203
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
208
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
204
 // to check that the wiring to the thermistor is not broken.
209
 // to check that the wiring to the thermistor is not broken.
205
 // Otherwise this would lead to the heater being powered on all the time.
210
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/Hephestos_2/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/K8200/Configuration.h Näytä tiedosto

199
 //#define TEMP_SENSOR_1_AS_REDUNDANT
199
 //#define TEMP_SENSOR_1_AS_REDUNDANT
200
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
200
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
201
 
201
 
202
-// Actual temperature must be close to target for this long before M109 returns success
202
+// Extruder temperature must be close to target for this long before M109 returns success
203
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
203
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
204
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
204
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
205
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
205
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
206
 
206
 
207
+// Bed temperature must be close to target for this long before M190 returns success
208
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
209
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
210
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
211
+
207
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
212
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
208
 // to check that the wiring to the thermistor is not broken.
213
 // to check that the wiring to the thermistor is not broken.
209
 // Otherwise this would lead to the heater being powered on all the time.
214
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/RigidBot/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 //#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 //#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/SCARA/Configuration.h Näytä tiedosto

217
 //#define TEMP_SENSOR_1_AS_REDUNDANT
217
 //#define TEMP_SENSOR_1_AS_REDUNDANT
218
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
218
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
219
 
219
 
220
-// Actual temperature must be close to target for this long before M109 returns success
220
+// Extruder temperature must be close to target for this long before M109 returns success
221
 #define TEMP_RESIDENCY_TIME 3  // (seconds)
221
 #define TEMP_RESIDENCY_TIME 3  // (seconds)
222
 #define TEMP_HYSTERESIS 2       // (degC) range of +/- temperatures considered "close" to the target one
222
 #define TEMP_HYSTERESIS 2       // (degC) range of +/- temperatures considered "close" to the target one
223
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
223
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
224
 
224
 
225
+// Bed temperature must be close to target for this long before M190 returns success
226
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
227
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
228
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
229
+
225
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
230
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
226
 // to check that the wiring to the thermistor is not broken.
231
 // to check that the wiring to the thermistor is not broken.
227
 // Otherwise this would lead to the heater being powered on all the time.
232
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/TAZ4/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/WITBOX/Configuration.h Näytä tiedosto

195
 //#define TEMP_SENSOR_1_AS_REDUNDANT
195
 //#define TEMP_SENSOR_1_AS_REDUNDANT
196
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
196
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
197
 
197
 
198
-// Actual temperature must be close to target for this long before M109 returns success
198
+// Extruder temperature must be close to target for this long before M109 returns success
199
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
199
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
200
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
200
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
201
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
201
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
202
 
202
 
203
+// Bed temperature must be close to target for this long before M190 returns success
204
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
205
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
206
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
207
+
203
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
208
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
204
 // to check that the wiring to the thermistor is not broken.
209
 // to check that the wiring to the thermistor is not broken.
205
 // Otherwise this would lead to the heater being powered on all the time.
210
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/adafruit/ST7565/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/delta/biv2.5/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/delta/generic/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 5
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 5
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h Näytä tiedosto

198
 //#define TEMP_SENSOR_1_AS_REDUNDANT
198
 //#define TEMP_SENSOR_1_AS_REDUNDANT
199
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
199
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
200
 
200
 
201
-// Actual temperature must be close to target for this long before M109 returns success
201
+// Extruder temperature must be close to target for this long before M109 returns success
202
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
202
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
203
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
204
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
205
 
205
 
206
+// Bed temperature must be close to target for this long before M190 returns success
207
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
208
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
209
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
210
+
206
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
211
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
207
 // to check that the wiring to the thermistor is not broken.
212
 // to check that the wiring to the thermistor is not broken.
208
 // Otherwise this would lead to the heater being powered on all the time.
213
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h Näytä tiedosto

215
 //#define TEMP_SENSOR_1_AS_REDUNDANT
215
 //#define TEMP_SENSOR_1_AS_REDUNDANT
216
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
216
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
217
 
217
 
218
-// Actual temperature must be close to target for this long before M109 returns success
218
+// Extruder temperature must be close to target for this long before M109 returns success
219
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
219
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
220
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
220
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
221
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
221
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
222
 
222
 
223
+// Bed temperature must be close to target for this long before M190 returns success
224
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
225
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
226
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
227
+
223
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
228
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
224
 // to check that the wiring to the thermistor is not broken.
229
 // to check that the wiring to the thermistor is not broken.
225
 // Otherwise this would lead to the heater being powered on all the time.
230
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/makibox/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

+ 6
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration.h Näytä tiedosto

192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
192
 //#define TEMP_SENSOR_1_AS_REDUNDANT
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
193
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
194
 
194
 
195
-// Actual temperature must be close to target for this long before M109 returns success
195
+// Extruder temperature must be close to target for this long before M109 returns success
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
196
 #define TEMP_RESIDENCY_TIME 10  // (seconds)
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
197
 #define TEMP_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
198
 #define TEMP_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
199
 
199
 
200
+// Bed temperature must be close to target for this long before M190 returns success
201
+#define TEMP_BED_RESIDENCY_TIME 0   // (seconds)
202
+#define TEMP_BED_HYSTERESIS 3       // (degC) range of +/- temperatures considered "close" to the target one
203
+#define TEMP_BED_WINDOW     1       // (degC) Window around target to start the residency timer x degC early.
204
+
200
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
205
 // The minimal temperature defines the temperature below which the heater will not be enabled It is used
201
 // to check that the wiring to the thermistor is not broken.
206
 // to check that the wiring to the thermistor is not broken.
202
 // Otherwise this would lead to the heater being powered on all the time.
207
 // Otherwise this would lead to the heater being powered on all the time.

Loading…
Peruuta
Tallenna