Skip to content

Commit

Permalink
Shut down autotemp in disable_all_heaters
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed May 4, 2017
1 parent acec237 commit 6854f08
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 17 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ script:
- restore_configs
- opt_enable NUM_SERVOS Z_ENDSTOP_SERVO_NR Z_SERVO_ANGLES DEACTIVATE_SERVOS_AFTER_MOVE
- opt_enable AUTO_BED_LEVELING_3POINT DEBUG_LEVELING_FEATURE EEPROM_SETTINGS EEPROM_CHITCHAT
- opt_enable_adv EXTENDED_CAPABILITIES_REPORT AUTO_REPORT_TEMPERATURES
- opt_enable_adv EXTENDED_CAPABILITIES_REPORT AUTO_REPORT_TEMPERATURES AUTOTEMP
- build_marlin
#
# Test MESH_BED_LEVELING feature, with LCD
Expand Down
4 changes: 0 additions & 4 deletions Marlin/Marlin_main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5762,10 +5762,6 @@ inline void gcode_M31() {

SERIAL_ECHO_START;
SERIAL_ECHOLNPAIR("Print time: ", buffer);

#if ENABLED(AUTOTEMP)
thermalManager.autotempShutdown();
#endif
}

#if ENABLED(SDSUPPORT)
Expand Down
8 changes: 7 additions & 1 deletion Marlin/temperature.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,10 @@
*/

#include "Marlin.h"
#include "ultralcd.h"
#include "temperature.h"
#include "thermistortables.h"
#include "ultralcd.h"
#include "planner.h"
#include "language.h"

#if ENABLED(HEATER_0_USES_MAX6675)
Expand Down Expand Up @@ -1288,6 +1289,11 @@ void Temperature::init() {
#endif // THERMAL_PROTECTION_HOTENDS || THERMAL_PROTECTION_BED

void Temperature::disable_all_heaters() {

#if ENABLED(AUTOTEMP)
planner.autotemp_enabled = false;
#endif

HOTEND_LOOP() setTargetHotend(0, e);
setTargetBed(0);

Expand Down
11 changes: 0 additions & 11 deletions Marlin/temperature.h
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@
#ifndef TEMPERATURE_H
#define TEMPERATURE_H

#include "planner.h"
#include "thermistortables.h"

#include "MarlinConfig.h"
Expand Down Expand Up @@ -418,16 +417,6 @@ class Temperature {
*/
static void updatePID();

#if ENABLED(AUTOTEMP)
static void autotempShutdown() {
if (planner.autotemp_enabled) {
planner.autotemp_enabled = false;
if (degTargetHotend(EXTRUDER_IDX) > planner.autotemp_min)
setTargetHotend(0, EXTRUDER_IDX);
}
}
#endif

#if ENABLED(BABYSTEPPING)

static void babystep_axis(const AxisEnum axis, const int distance) {
Expand Down

0 comments on commit 6854f08

Please sign in to comment.