0
0
Fork 0
mirror of https://github.com/MarlinFirmware/Marlin.git synced 2025-01-19 16:16:13 +00:00

🩹 Remove extraneous MPC temp check (#25816)

This commit is contained in:
Giuliano Zaro 2023-05-13 23:31:31 +02:00 committed by GitHub
parent 30c3daf031
commit de78b60252
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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); if (sample_count == 0) t1_time = MS_TO_SEC_PRECISE(curr_time_ms - heat_start_time_ms);
temp_samples[sample_count++] = current_temp; temp_samples[sample_count++] = current_temp;
if (current_temp >= 200.0f) break;
next_test_time_ms += test_interval_ms * sample_distance; next_test_time_ms += test_interval_ms * sample_distance;
} }