Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Botka <16738302+Haxk20@users.noreply.github.com>2022-03-28 19:32:50 +0300
committerHaxk20 <16738302+Haxk20@users.noreply.github.com>2022-05-16 21:43:35 +0300
commitc466742cb15c8be914a8ef3247c3acaae151d68a (patch)
tree1ad612b3d3911549424e11546220f3131eb90e4a /resources/definitions
parentcba956be193de02121159127a32095da27cb40b7 (diff)
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 <martin.botka@somainline.org>
Diffstat (limited to 'resources/definitions')
-rw-r--r--resources/definitions/voron2_base.def.json4
1 files 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
+}