Browse Source

Move dummy thermistor opts, fix redundant sensor comment

Scott Lahteine 7 years ago
parent
commit
eb714ee873

+ 6
- 1
Marlin/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/Cartesio/Configuration.h View File

@@ -253,7 +253,12 @@
253 253
 #define TEMP_SENSOR_3 0
254 254
 #define TEMP_SENSOR_BED 1
255 255
 
256
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
256
+// Dummy thermistor constant temperature readings, for use with 998 and 999
257
+#define DUMMY_THERMISTOR_998_VALUE 25
258
+#define DUMMY_THERMISTOR_999_VALUE 100
259
+
260
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
261
+// from the two sensors differ too much the print will be aborted.
257 262
 //#define TEMP_SENSOR_1_AS_REDUNDANT
258 263
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
259 264
 

+ 6
- 1
Marlin/example_configurations/Felix/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 1
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/Felix/DUAL/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 1
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/Hephestos/Configuration.h View File

@@ -255,7 +255,12 @@
255 255
 #define TEMP_SENSOR_3 0
256 256
 #define TEMP_SENSOR_BED 0
257 257
 
258
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
258
+// Dummy thermistor constant temperature readings, for use with 998 and 999
259
+#define DUMMY_THERMISTOR_998_VALUE 25
260
+#define DUMMY_THERMISTOR_999_VALUE 100
261
+
262
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
263
+// from the two sensors differ too much the print will be aborted.
259 264
 //#define TEMP_SENSOR_1_AS_REDUNDANT
260 265
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
261 266
 

+ 6
- 1
Marlin/example_configurations/Hephestos_2/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/K8200/Configuration.h View File

@@ -259,7 +259,12 @@
259 259
 #define TEMP_SENSOR_3 0
260 260
 #define TEMP_SENSOR_BED 5
261 261
 
262
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
262
+// Dummy thermistor constant temperature readings, for use with 998 and 999
263
+#define DUMMY_THERMISTOR_998_VALUE 25
264
+#define DUMMY_THERMISTOR_999_VALUE 100
265
+
266
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
267
+// from the two sensors differ too much the print will be aborted.
263 268
 //#define TEMP_SENSOR_1_AS_REDUNDANT
264 269
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
265 270
 

+ 6
- 1
Marlin/example_configurations/K8400/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/K8400/Dual-head/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 1
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/RigidBot/Configuration.h View File

@@ -255,7 +255,12 @@
255 255
 #define TEMP_SENSOR_3 0
256 256
 #define TEMP_SENSOR_BED 1
257 257
 
258
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
258
+// Dummy thermistor constant temperature readings, for use with 998 and 999
259
+#define DUMMY_THERMISTOR_998_VALUE 25
260
+#define DUMMY_THERMISTOR_999_VALUE 100
261
+
262
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
263
+// from the two sensors differ too much the print will be aborted.
259 264
 //#define TEMP_SENSOR_1_AS_REDUNDANT
260 265
 //#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
261 266
 

+ 6
- 1
Marlin/example_configurations/SCARA/Configuration.h View File

@@ -284,7 +284,12 @@
284 284
 #define TEMP_SENSOR_3 0
285 285
 #define TEMP_SENSOR_BED 1
286 286
 
287
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
287
+// Dummy thermistor constant temperature readings, for use with 998 and 999
288
+#define DUMMY_THERMISTOR_998_VALUE 25
289
+#define DUMMY_THERMISTOR_999_VALUE 100
290
+
291
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
292
+// from the two sensors differ too much the print will be aborted.
288 293
 //#define TEMP_SENSOR_1_AS_REDUNDANT
289 294
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
290 295
 

+ 6
- 1
Marlin/example_configurations/TAZ4/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 7
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/WITBOX/Configuration.h View File

@@ -255,7 +255,12 @@
255 255
 #define TEMP_SENSOR_3 0
256 256
 #define TEMP_SENSOR_BED 0
257 257
 
258
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
258
+// Dummy thermistor constant temperature readings, for use with 998 and 999
259
+#define DUMMY_THERMISTOR_998_VALUE 25
260
+#define DUMMY_THERMISTOR_999_VALUE 100
261
+
262
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
263
+// from the two sensors differ too much the print will be aborted.
259 264
 //#define TEMP_SENSOR_1_AS_REDUNDANT
260 265
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
261 266
 

+ 6
- 1
Marlin/example_configurations/adafruit/ST7565/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/delta/biv2.5/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 1
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/delta/generic/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 0
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/delta/kossel_mini/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 11
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 5
258 263
 

+ 6
- 1
Marlin/example_configurations/delta/kossel_pro/Configuration.h View File

@@ -258,7 +258,12 @@
258 258
 #define TEMP_SENSOR_3 0
259 259
 #define TEMP_SENSOR_BED 5
260 260
 
261
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
261
+// Dummy thermistor constant temperature readings, for use with 998 and 999
262
+#define DUMMY_THERMISTOR_998_VALUE 25
263
+#define DUMMY_THERMISTOR_999_VALUE 100
264
+
265
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
266
+// from the two sensors differ too much the print will be aborted.
262 267
 //#define TEMP_SENSOR_1_AS_REDUNDANT
263 268
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
264 269
 

+ 6
- 1
Marlin/example_configurations/delta/kossel_xl/Configuration.h View File

@@ -245,7 +245,12 @@
245 245
 #define TEMP_SENSOR_3 0
246 246
 #define TEMP_SENSOR_BED 5
247 247
 
248
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
248
+// Dummy thermistor constant temperature readings, for use with 998 and 999
249
+#define DUMMY_THERMISTOR_998_VALUE 25
250
+#define DUMMY_THERMISTOR_999_VALUE 100
251
+
252
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
253
+// from the two sensors differ too much the print will be aborted.
249 254
 //#define TEMP_SENSOR_1_AS_REDUNDANT
250 255
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
251 256
 

+ 6
- 1
Marlin/example_configurations/makibox/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 12
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

+ 6
- 1
Marlin/example_configurations/tvrrug/Round2/Configuration.h View File

@@ -252,7 +252,12 @@
252 252
 #define TEMP_SENSOR_3 0
253 253
 #define TEMP_SENSOR_BED 5
254 254
 
255
-// This makes temp sensor 1 a redundant sensor for sensor 0. If the temperatures difference between these sensors is to high the print will be aborted.
255
+// Dummy thermistor constant temperature readings, for use with 998 and 999
256
+#define DUMMY_THERMISTOR_998_VALUE 25
257
+#define DUMMY_THERMISTOR_999_VALUE 100
258
+
259
+// Use temp sensor 1 as a redundant sensor with sensor 0. If the readings
260
+// from the two sensors differ too much the print will be aborted.
256 261
 //#define TEMP_SENSOR_1_AS_REDUNDANT
257 262
 #define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
258 263
 

Loading…
Cancel
Save