From 5d711f2420f17cd5a612b1af54a5ddb25f8f634e Mon Sep 17 00:00:00 2001 From: Dave Bullock Date: Fri, 17 Sep 2021 13:31:28 -0700 Subject: [PATCH] Increase max wipe speed for Voron ERCF wipe towers (#1568) * Increase max wipe speed for Voron ERCF wipe towers from 200 to 400 --- src/libslic3r/PrintConfig.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp index 0cc55f7a812..c5ae79bd8e9 100644 --- a/src/libslic3r/PrintConfig.cpp +++ b/src/libslic3r/PrintConfig.cpp @@ -1338,7 +1338,7 @@ void PrintConfigDef::init_fff_params() "\nIf using marlin, M220 B/R is used to save the speed override before the wipe tower print."); def->sidetext = L("%"); def->min = 0; - def->max = 200; + def->max = 400; def->mode = comExpert; def->is_vector_extruder = true; def->set_default_value(new ConfigOptionFloats { 0 });