From ebdfee0fef0f4a014c88e8a0f7c593f5f1a159ee Mon Sep 17 00:00:00 2001 From: Rijk van Manen Date: Thu, 9 Feb 2023 12:49:45 +0100 Subject: [PATCH] update cool_min_temperature lower limit The cool_min_temperature should be larger then both the initial and final temperature too avoid that the printer is heating too much and later on waits for cooling. We could make the limit less strict for single extrusion. PP-71 --- resources/definitions/fdmprinter.def.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/definitions/fdmprinter.def.json b/resources/definitions/fdmprinter.def.json index 9154ce95ae..3d07faf5cb 100644 --- a/resources/definitions/fdmprinter.def.json +++ b/resources/definitions/fdmprinter.def.json @@ -4419,7 +4419,7 @@ "type": "float", "value": "material_print_temperature", "enabled": "cool_min_layer_time > 0", - "minimum_value": "material_final_print_temperature", + "minimum_value": "max(material_final_print_temperature, material_initial_print_temperature)", "maximum_value": "material_print_temperature", "settable_per_mesh": false, "settable_per_extruder": true