diff options
author | Kevin O'Connor <kevin@koconnor.net> | 2017-01-02 19:22:32 -0500 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2017-01-03 18:17:43 -0500 |
commit | b26922978a1b7d0994e90572dcec6af120987b82 (patch) | |
tree | e4e2695a13269c5becd67886f2eb33777a73ab42 /config/example.cfg | |
parent | 5a5bd2596a289240b2eada8a3ab2cc6f65ef8006 (diff) | |
download | kutter-b26922978a1b7d0994e90572dcec6af120987b82.tar.gz kutter-b26922978a1b7d0994e90572dcec6af120987b82.tar.xz kutter-b26922978a1b7d0994e90572dcec6af120987b82.zip |
extruder: Do sanity checks on extrusion rates
Add a run-time check to ensure the incoming g-code doesn't have a
ridiculously large e move.
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example.cfg')
-rw-r--r-- | config/example.cfg | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/example.cfg b/config/example.cfg index 75684d16..98d1c0d1 100644 --- a/config/example.cfg +++ b/config/example.cfg @@ -115,6 +115,16 @@ nozzle_diameter: 0.500 filament_diameter: 3.500 # Diameter of the raw filament (in mm) as it enters the # extruder. This parameter must be provided. +#max_extrude_cross_section: +# Maximum area of the cross section of an extrusion line (in +# mm^2). If a move requests an extrusion rate that would exceed this +# value it will cause an error to be returned. The default is: 4.0 * +# nozzle_diameter^2 +#max_extrude_only_distance: 50.0 +# Maximum length (in mm of raw filament) that an extrude only move +# may be. If an extrude only move requests a distance greater than +# this value it will cause an error to be returned. The default is +# 50mm. max_velocity: 200000 # Maximum velocity (in mm/s) of the extruder motor for extrude only # moves. This parameter must be provided. |