From 15d15cd3aa14ee1c6f925c1fbe2e657d45a65c65 Mon Sep 17 00:00:00 2001 From: "zhimin.zeng" Date: Mon, 11 Sep 2023 20:56:11 +0800 Subject: [PATCH] FIX: The calibration temp of the temp tower is incorrect Jira: 4382 Change-Id: Ib44f4e0e9309b89a3e6364541d775b30ca4c6d70 --- src/libslic3r/GCode.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp index 32dddf7dd..6f8de3afe 100644 --- a/src/libslic3r/GCode.cpp +++ b/src/libslic3r/GCode.cpp @@ -2925,7 +2925,7 @@ GCode::LayerResult GCode::process_layer( } else if (print.calib_mode() == CalibMode::Calib_Temp_Tower) { auto offset = static_cast(print_z / 10.001) * 5; - gcode += writer().set_temperature(print.calib_params().end - offset); + gcode += writer().set_temperature(print.calib_params().start - offset); } else if (print.calib_mode() == CalibMode::Calib_Vol_speed_Tower) { auto _speed = print.calib_params().start + print_z * print.calib_params().step;