Browse Source

Also fix temperature externs

pull/1/head
Scott Lahteine 9 years ago
parent
commit
fe29bdd72b
  1. 6
      Marlin/temperature.h

6
Marlin/temperature.h

@ -41,10 +41,10 @@ void manage_heater(); //it is critical that this is called periodically.
// low level conversion routines
// do not use these routines and variables outside of temperature.cpp
extern int target_temperature[EXTRUDERS];
extern float current_temperature[EXTRUDERS];
extern int target_temperature[4];
extern float current_temperature[4];
#ifdef SHOW_TEMP_ADC_VALUES
extern int current_temperature_raw[EXTRUDERS];
extern int current_temperature_raw[4];
extern int current_temperature_bed_raw;
#endif
extern int target_temperature_bed;

Loading…
Cancel
Save