From 55af9fab841bbb138b4f2600d263c40f8407cc8a Mon Sep 17 00:00:00 2001 From: Giuliano Zaro <3684609+GMagician@users.noreply.github.com> Date: Sat, 13 May 2023 23:31:31 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=A9=B9=20Remove=20extraneous=20MPC=20temp?= =?UTF-8?q?=20check=20(#25816)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Marlin/src/module/temperature.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Marlin/src/module/temperature.cpp b/Marlin/src/module/temperature.cpp index 8bcaf5d83fc5..09c5ef0cdfe7 100644 --- a/Marlin/src/module/temperature.cpp +++ b/Marlin/src/module/temperature.cpp @@ -1064,8 +1064,6 @@ volatile bool Temperature::raw_temps_ready = false; if (sample_count == 0) t1_time = MS_TO_SEC_PRECISE(curr_time_ms - heat_start_time_ms); temp_samples[sample_count++] = current_temp; - if (current_temp >= 200.0f) break; - next_test_time_ms += test_interval_ms * sample_distance; }