From c466742cb15c8be914a8ef3247c3acaae151d68a Mon Sep 17 00:00:00 2001 From: Martin Botka <16738302+Haxk20@users.noreply.github.com> Date: Mon, 28 Mar 2022 18:32:50 +0200 Subject: [PATCH] voron2_base.def.json: Do not limit travel speeds to 300mm/s VORON V2.4 is an fast machine. There is no reason to limit the user to 300mm/s. Unlock these speeds by removing maximum_value which makes cura fallback to machine_max_feedrate_x/y which are set to the C (299,792,458). Warning stays at 501 after Fulg talked with some VORON team members they have come to the conclusion that 501 is fine as people start hitting issues on the machine around the 500-600 range Signed-off-by: Martin Botka --- resources/definitions/voron2_base.def.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/resources/definitions/voron2_base.def.json b/resources/definitions/voron2_base.def.json index ec069b24fb..a3c19f450e 100644 --- a/resources/definitions/voron2_base.def.json +++ b/resources/definitions/voron2_base.def.json @@ -107,7 +107,7 @@ "retraction_combing": { "value": "'noskin'" }, "retraction_combing_max_distance": { "default_value": 10 }, "travel_avoid_other_parts": { "default_value": false }, - "speed_travel": { "maximum_value": 300, "value": 300, "maximum_value_warning": 501 }, + "speed_travel": { "value": 300, "maximum_value_warning": 501 }, "speed_travel_layer_0": { "value": "math.ceil(speed_travel * 0.4)" }, "speed_layer_0": { "value": "math.ceil(speed_print * 0.25)" }, "speed_wall": { "value": "math.ceil(speed_print * 0.33)" }, @@ -151,4 +151,4 @@ "jerk_wall_0": { "value": 10 }, "jerk_roofing": { "value": 10 } } -} \ No newline at end of file +}