From 47bf094c52d8e12d06f965619ce47b24434c7e7b Mon Sep 17 00:00:00 2001 From: Ghostkeeper Date: Thu, 7 May 2020 16:49:53 +0200 Subject: [PATCH] Fix internal conflicts within the Anycubic Mega Zero printer This definition specified that the maximum E speed is 25mm/s but then said that the retraction speed is 30mm/s. I've changed the maximum E speed to 30mm/s then because apparently that's what the definition author was testing with. This definition specified that the maximum Z speed is 5mm/s but the default Z hop speed is 10mm/s. I've set the Z hop speed to 5mm/s because it was not initially overridden by the definition author, but apparently 5mm/s is the limit. Contributes to issue CURA-7431. --- resources/definitions/anycubic_mega_zero.def.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/resources/definitions/anycubic_mega_zero.def.json b/resources/definitions/anycubic_mega_zero.def.json index 2feb4baf6b..a17fddc4b4 100644 --- a/resources/definitions/anycubic_mega_zero.def.json +++ b/resources/definitions/anycubic_mega_zero.def.json @@ -64,7 +64,7 @@ "machine_max_feedrate_x": { "value": 500 }, "machine_max_feedrate_y": { "value": 500 }, "machine_max_feedrate_z": { "value": 5 }, - "machine_max_feedrate_e": { "value": 25 }, + "machine_max_feedrate_e": { "value": 30 }, "machine_max_acceleration_x": { "value": 500 }, "machine_max_acceleration_y": { "value": 500 }, @@ -84,6 +84,7 @@ "jerk_enabled": { "value": false }, "speed_print": { "value": 50.0 }, + "speed_z_hop": { "value": "machine_max_feedrate_z" }, "optimize_wall_printing_order": { "value": "True" }, "material_initial_print_temperature": { "value": "material_print_temperature" },