daid303 11 years ago
parent
commit
7577717b59
1 changed files with 4 additions and 4 deletions
  1. 4
    4
      Marlin/thermistortables.h

+ 4
- 4
Marlin/thermistortables.h View File

@@ -474,7 +474,7 @@ const short temptable_55[][2] PROGMEM = {
474 474
 
475 475
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
476 476
 #ifndef HEATER_0_RAW_HI_TEMP
477
-# if HEATER_0_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
477
+# ifdef HEATER_0_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
478 478
 #  define HEATER_0_RAW_HI_TEMP 0
479 479
 #  define HEATER_0_RAW_LO_TEMP 16383
480 480
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
@@ -497,7 +497,7 @@ const short temptable_55[][2] PROGMEM = {
497 497
 
498 498
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
499 499
 #ifndef HEATER_1_RAW_HI_TEMP
500
-# if HEATER_1_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
500
+# ifdef HEATER_1_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
501 501
 #  define HEATER_1_RAW_HI_TEMP 0
502 502
 #  define HEATER_1_RAW_LO_TEMP 16383
503 503
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
@@ -520,7 +520,7 @@ const short temptable_55[][2] PROGMEM = {
520 520
 
521 521
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
522 522
 #ifndef HEATER_2_RAW_HI_TEMP
523
-# if HEATER_2_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
523
+# ifdef HEATER_2_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
524 524
 #  define HEATER_2_RAW_HI_TEMP 0
525 525
 #  define HEATER_2_RAW_LO_TEMP 16383
526 526
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
@@ -540,7 +540,7 @@ const short temptable_55[][2] PROGMEM = {
540 540
 
541 541
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
542 542
 #ifndef HEATER_BED_RAW_HI_TEMP
543
-# if BED_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
543
+# ifdef BED_USES_THERMISTOR   //In case of a thermistor the highest temperature results in the lowest ADC value
544 544
 #  define HEATER_BED_RAW_HI_TEMP 0
545 545
 #  define HEATER_BED_RAW_LO_TEMP 16383
546 546
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value

Loading…
Cancel
Save