Disable vibration limit. #785
This commit is contained in:
parent
2abf2be781
commit
21a6219b62
@ -263,7 +263,6 @@ The author of the Silk icon set is Mark James.
|
|||||||
--support-material-extrusion-width
|
--support-material-extrusion-width
|
||||||
Set a different extrusion width for support material
|
Set a different extrusion width for support material
|
||||||
--bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: 1)
|
--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:
|
Multiple extruder options:
|
||||||
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
|
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
|
||||||
|
@ -416,7 +416,7 @@ our $Options = {
|
|||||||
sidetext => 'Hz',
|
sidetext => 'Hz',
|
||||||
cli => 'vibration-limit=f',
|
cli => 'vibration-limit=f',
|
||||||
type => 'f',
|
type => 'f',
|
||||||
default => 25,
|
default => 0,
|
||||||
},
|
},
|
||||||
|
|
||||||
# print options
|
# print options
|
||||||
|
@ -168,7 +168,7 @@ sub extrude_path {
|
|||||||
}
|
}
|
||||||
|
|
||||||
# only apply vibration limiting to gap fill until the algorithm is more mature
|
# 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
|
# go to first point of extrusion path
|
||||||
$self->speed('travel');
|
$self->speed('travel');
|
||||||
|
@ -634,10 +634,6 @@ sub build {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
{
|
|
||||||
title => 'Advanced',
|
|
||||||
options => [qw(vibration_limit)],
|
|
||||||
},
|
|
||||||
]);
|
]);
|
||||||
|
|
||||||
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [
|
$self->add_options_page('Custom G-code', 'cog.png', optgroups => [
|
||||||
|
@ -311,7 +311,6 @@ $j
|
|||||||
--support-material-extrusion-width
|
--support-material-extrusion-width
|
||||||
Set a different extrusion width for support material
|
Set a different extrusion width for support material
|
||||||
--bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: $config->{bridge_flow_ratio})
|
--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:
|
Multiple extruder options:
|
||||||
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
|
--extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
|
||||||
|
Loading…
Reference in New Issue
Block a user