diff --git a/MK/Configuration_Temperature.h b/MK/Configuration_Temperature.h index 32ccdc30364a8464e7e7c8b6c600326cf9f30d52..be4d7cec55f6bf7547f23f896aa1b00be55211df 100644 --- a/MK/Configuration_Temperature.h +++ b/MK/Configuration_Temperature.h @@ -73,7 +73,7 @@ #define TEMP_SENSOR_2 0 #define TEMP_SENSOR_3 0 #define TEMP_SENSOR_BED 0 -#define TEMP_SENSOR_CHAMBER 0 // NOT USED FOR NOW!!! +#define TEMP_SENSOR_CHAMBER 0 #define TEMP_SENSOR_COOLER 0 //These 2 defines help to calibrate the AD595 sensor in case you get wrong temperature measurements. diff --git a/MK/module/MK_Main.cpp b/MK/module/MK_Main.cpp index 88f57dbbe8c03aff1b0227d61ed0bf37dd83bf38..6c748a1e65a9d75a36fa494b6d61413bd45cb7d1 100644 --- a/MK/module/MK_Main.cpp +++ b/MK/module/MK_Main.cpp @@ -3008,7 +3008,7 @@ inline void wait_heater(bool no_wait_for_cooling = true) { now = millis(); if (ELAPSED(now, next_temp_ms)) { //Print temp & remaining time every 1s while waiting next_temp_ms = now + 1000UL; - #if HAS(TEMP_HOTEND) || HAS(TEMP_BED) + #if HAS(TEMP_0) || HAS(TEMP_BED) || ENABLED(HEATER_0_USES_MAX6675) print_heaterstates(); #endif #if TEMP_RESIDENCY_TIME > 0 @@ -3083,7 +3083,7 @@ inline void wait_bed(bool no_wait_for_cooling = true) { now = millis(); if (ELAPSED(now, next_temp_ms)) { //Print Temp Reading every 1 second while heating up. next_temp_ms = now + 1000UL; - #if HAS(TEMP_0) || HAS(TEMP_BED) + #if HAS(TEMP_0) || HAS(TEMP_BED) || ENABLED(HEATER_0_USES_MAX6675) print_heaterstates(); #endif #if TEMP_BED_RESIDENCY_TIME > 0 @@ -4867,7 +4867,7 @@ inline void gcode_G92() { current_position[i] = v; if (i == E_AXIS) { - plan_set_e_position(v); + plan_set_e_position(v); } else { position_shift[i] += v - p; // Offset the coordinate space