Browse Source

Also fix temperature externs

Scott Lahteine 9 years ago
parent
commit
fe29bdd72b
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      Marlin/temperature.h

+ 3
- 3
Marlin/temperature.h View File

41
 
41
 
42
 // low level conversion routines
42
 // low level conversion routines
43
 // do not use these routines and variables outside of temperature.cpp
43
 // do not use these routines and variables outside of temperature.cpp
44
-extern int target_temperature[EXTRUDERS];  
45
-extern float current_temperature[EXTRUDERS];
44
+extern int target_temperature[4];  
45
+extern float current_temperature[4];
46
 #ifdef SHOW_TEMP_ADC_VALUES
46
 #ifdef SHOW_TEMP_ADC_VALUES
47
-  extern int current_temperature_raw[EXTRUDERS];
47
+  extern int current_temperature_raw[4];
48
   extern int current_temperature_bed_raw;
48
   extern int current_temperature_bed_raw;
49
 #endif
49
 #endif
50
 extern int target_temperature_bed;
50
 extern int target_temperature_bed;

Loading…
Cancel
Save