From 142a6cc4eb2b8a44075087b079f246703c435954 Mon Sep 17 00:00:00 2001 From: Alessandro Ranellucci Date: Wed, 5 Dec 2012 17:57:35 +0100 Subject: [PATCH] Add --vibration-limit back to CLI usage and disable it by default --- README.markdown | 2 ++ lib/Slic3r/Config.pm | 2 +- slic3r.pl | 2 ++ 3 files changed, 5 insertions(+), 1 deletion(-) diff --git a/README.markdown b/README.markdown index 67a4e7d0a..b355f935b 100644 --- a/README.markdown +++ b/README.markdown @@ -116,6 +116,8 @@ The author of the Silk icon set is Mark James. --g0 Use G0 commands for retraction (experimental, not supported by all firmwares) --gcode-comments Make G-code verbose by adding comments (default: no) + --vibration-limit Limit the frequency of moves on X and Y axes (Hz, set zero to disable; + default: 0) Filament options: --filament-diameter Diameter in mm of your raw filament (default: 3) diff --git a/lib/Slic3r/Config.pm b/lib/Slic3r/Config.pm index cc8904f22..85b1c0149 100644 --- a/lib/Slic3r/Config.pm +++ b/lib/Slic3r/Config.pm @@ -432,7 +432,7 @@ our $Options = { sidetext => 'Hz', cli => 'vibration-limit=f', type => 'f', - default => 15, + default => 0, }, # print options diff --git a/slic3r.pl b/slic3r.pl index 98f4aef1c..b4325abf1 100755 --- a/slic3r.pl +++ b/slic3r.pl @@ -164,6 +164,8 @@ $j --g0 Use G0 commands for retraction (experimental, not supported by all firmwares) --gcode-comments Make G-code verbose by adding comments (default: no) + --vibration-limit Limit the frequency of moves on X and Y axes (Hz, set zero to disable; + default: $config->{vibration_limit}) Filament options: --filament-diameter Diameter in mm of your raw filament (default: $config->{filament_diameter}->[0])