diff options
author | Arksine <arksine.code@gmail.com> | 2019-02-12 19:50:10 -0500 |
---|---|---|
committer | KevinOConnor <kevin@koconnor.net> | 2019-02-25 13:34:14 -0500 |
commit | f7d885458759484cdebbeaddb240811507ed947c (patch) | |
tree | 422b7bacc3f7280a0dcb376533a381dc39ac83f9 /config | |
parent | 7694c3e1b8c374a8d7c84685ff72f9edf3a23e16 (diff) | |
download | kutter-f7d885458759484cdebbeaddb240811507ed947c.tar.gz kutter-f7d885458759484cdebbeaddb240811507ed947c.tar.xz kutter-f7d885458759484cdebbeaddb240811507ed947c.zip |
bed_mesh: simplify configuration
The 'bed_shape' option has been removed. The user will enter a 'bed_radius' if they have a round be, otherwise they should enter 'min_point' and 'max_point'. When the bed is round the user should supply a 'round_probe_count' option, otherwise just 'probe_count'.
Signed-off-by: Eric Callahan <arksine.code@gmail.com>
Diffstat (limited to 'config')
-rw-r--r-- | config/example-extras.cfg | 46 |
1 files changed, 21 insertions, 25 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index d22311a3..5aed46d6 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -129,14 +129,14 @@ # center of the print area. # # Visual Examples: -# bed_shape = rectangular, probe_count = 3,3: +# rectangular bed, probe_count = 3,3: # x---x---x (max_point) # | # x---x---x # | # (min_point) x---x---x # -# bed_shape = round, probe_count = 5, radius = r: +# round bed, round_probe_count = 5, bed_radius = r: # x (0,r) end # / # x---x---x @@ -160,34 +160,30 @@ #sample_retract_dist: 2.0 # The distance (in mm) to retract between each sample if # sampling more than once. Default is 2mm. -#bed_shape: rectangular -# Defines the shape of the bed for probing. May be 'rectangular', -# as is common for cartesian printers, or 'round', as is common for -# delta printers. Default is rectangular. -#radius: -# Defines the radius to probe when the bed_shape is 'round'. Note -# that the radius is relative to the nozzle's origin, if using a -# probe be sure to account for its offset. This parameter must be -# provided if the bed_shape is 'round'. +#bed_radius: +# Defines the radius to probe for round beds. Note that the radius +# is relative to the nozzle's origin, if using a probe be sure to +# account for its offset. This parameter must be provided for round +# beds and omitted for rectangular beds. #min_point: -# Defines the minimum x,y position to probe when the bed_shape -# is 'rectangular'. Note that this refers to the nozzle position, -# take care that you do not define a point that will move the -# probe off of the bed. This parameter must be provided. +# Defines the minimum x,y position to probe when for rectangular +# beds. Note that this refers to the nozzle position, take care that +# you do not define a point that will move the probe off of the bed. +# This parameter must be provided for rectangular beds. #max_point: -# Defines the maximum x,y position to probe when the bed_shape -# is 'rectangular'. Follow the same precautions as listed in min_point. -# Also note that this does not necessarily define the last point -# probed, only the maximum coordinate. This parameter must be provided. +# Defines the maximum x,y position to probe when for rectangular +# beds. Follow the same precautions as listed in min_point. Also note +# that this does not necessarily define the last point probed, only +# the maximum coordinate. This parameter must be provided. #probe_count: 3,3 -## OR ## -#probe_count: 5 -# For 'rectangular' beds, this is a comma separate pair of integer +# For rectangular beds, this is a comma separate pair of integer # values (X,Y) defining the number of points to probe along each axis. # A single value is also valid, in which case that value will be applied -# to both axes. 'Round' beds only accept a single integer value that is -# applied to both axes. The probe count must be odd for round beds. -# Default is 3,3 for 'rectangular' beds, and 5 for 'round' beds. +# to both axes. Default is 3,3. +#round_probe_count: 5 +# For round beds, this is integer value defines the maximum number of +# points to probe along each axis. This value must be an odd number. +# Default is 5. #fade_start: 1.0 # The gcode z position in which to start phasing out z-adjustment # when fade is enabled. Default is 1.0. |