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])