Add --vibration-limit back to CLI usage and disable it by default

This commit is contained in:
Alessandro Ranellucci 2012-12-05 17:57:35 +01:00
parent ca0aa5c287
commit 142a6cc4eb
3 changed files with 5 additions and 1 deletions

View File

@ -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 --g0 Use G0 commands for retraction (experimental, not supported by all
firmwares) firmwares)
--gcode-comments Make G-code verbose by adding comments (default: no) --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 options:
--filament-diameter Diameter in mm of your raw filament (default: 3) --filament-diameter Diameter in mm of your raw filament (default: 3)

View File

@ -432,7 +432,7 @@ our $Options = {
sidetext => 'Hz', sidetext => 'Hz',
cli => 'vibration-limit=f', cli => 'vibration-limit=f',
type => 'f', type => 'f',
default => 15, default => 0,
}, },
# print options # print options

View File

@ -164,6 +164,8 @@ $j
--g0 Use G0 commands for retraction (experimental, not supported by all --g0 Use G0 commands for retraction (experimental, not supported by all
firmwares) firmwares)
--gcode-comments Make G-code verbose by adding comments (default: no) --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 options:
--filament-diameter Diameter in mm of your raw filament (default: $config->{filament_diameter}->[0]) --filament-diameter Diameter in mm of your raw filament (default: $config->{filament_diameter}->[0])