daid303 12 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
 
474
 
475
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
475
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
476
 #ifndef HEATER_0_RAW_HI_TEMP
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
 #  define HEATER_0_RAW_HI_TEMP 0
478
 #  define HEATER_0_RAW_HI_TEMP 0
479
 #  define HEATER_0_RAW_LO_TEMP 16383
479
 #  define HEATER_0_RAW_LO_TEMP 16383
480
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
480
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
497
 
497
 
498
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
498
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
499
 #ifndef HEATER_1_RAW_HI_TEMP
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
 #  define HEATER_1_RAW_HI_TEMP 0
501
 #  define HEATER_1_RAW_HI_TEMP 0
502
 #  define HEATER_1_RAW_LO_TEMP 16383
502
 #  define HEATER_1_RAW_LO_TEMP 16383
503
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
503
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
520
 
520
 
521
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
521
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
522
 #ifndef HEATER_2_RAW_HI_TEMP
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
 #  define HEATER_2_RAW_HI_TEMP 0
524
 #  define HEATER_2_RAW_HI_TEMP 0
525
 #  define HEATER_2_RAW_LO_TEMP 16383
525
 #  define HEATER_2_RAW_LO_TEMP 16383
526
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
526
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
540
 
540
 
541
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
541
 //Set the high and low raw values for the heater, this indicates which raw value is a high or low temperature
542
 #ifndef HEATER_BED_RAW_HI_TEMP
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
 #  define HEATER_BED_RAW_HI_TEMP 0
544
 #  define HEATER_BED_RAW_HI_TEMP 0
545
 #  define HEATER_BED_RAW_LO_TEMP 16383
545
 #  define HEATER_BED_RAW_LO_TEMP 16383
546
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value
546
 # else                          //In case of an thermocouple the highest temperature results in the highest ADC value

Loading…
Cancel
Save