Disable vibration limit. #785

medial-thinwall
Alessandro Ranellucci 2012-11-23 11:14:06 +01:00
parent 2abf2be781
commit 21a6219b62
5 changed files with 2 additions and 8 deletions

View File

@ -263,7 +263,6 @@ The author of the Silk icon set is Mark James.
--support-material-extrusion-width
Set a different extrusion width for support material
--bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: 1)
--vibration-limit Experimental frequency limit to avoid resonance (Hz, default: 25)
Multiple extruder options:
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement

View File

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

View File

@ -168,7 +168,7 @@ sub extrude_path {
}
# only apply vibration limiting to gap fill until the algorithm is more mature
$self->limit_frequency($path->role == EXTR_ROLE_GAPFILL);
$self->limit_frequency($path->role == EXTR_ROLE_GAPFILL) if 0;
# go to first point of extrusion path
$self->speed('travel');

View File

@ -634,10 +634,6 @@ sub build {
},
],
},
{
title => 'Advanced',
options => [qw(vibration_limit)],
},
]);
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [

View File

@ -311,7 +311,6 @@ $j
--support-material-extrusion-width
Set a different extrusion width for support material
--bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: $config->{bridge_flow_ratio})
--vibration-limit Experimental frequency limit to avoid resonance (Hz, default: $config->{vibration_limit})
Multiple extruder options:
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement