Skip to content

Commit cf4631c

Browse files
committed
temp window histerysis
1 parent 506dfa9 commit cf4631c

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

Marlin/Configuration.h

+11-11
Original file line numberDiff line numberDiff line change
@@ -431,11 +431,11 @@
431431
#define MAX_REDUNDANT_TEMP_SENSOR_DIFF 10
432432

433433
#define TEMP_RESIDENCY_TIME 10 // (seconds) Time to wait for hotend to "settle" in M109
434-
#define TEMP_WINDOW 1 // (°C) Temperature proximity for the "temperature reached" timer
434+
#define TEMP_WINDOW 2 // (°C) Temperature proximity for the "temperature reached" timer
435435
#define TEMP_HYSTERESIS 3 // (°C) Temperature proximity considered "close enough" to the target
436436

437437
#define TEMP_BED_RESIDENCY_TIME 10 // (seconds) Time to wait for bed to "settle" in M190
438-
#define TEMP_BED_WINDOW 1 // (°C) Temperature proximity for the "temperature reached" timer
438+
#define TEMP_BED_WINDOW 2 // (°C) Temperature proximity for the "temperature reached" timer
439439
#define TEMP_BED_HYSTERESIS 3 // (°C) Temperature proximity considered "close enough" to the target
440440

441441
// Below this temperature the heater will be switched off
@@ -740,7 +740,7 @@
740740
* X, Y, Z, E0 [, E1[, E2[, E3[, E4[, E5]]]]]
741741
*/
742742
//@ settings from 1.0.3 stock firmware
743-
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80.3, 80.4, 1600, 415 }
743+
#define DEFAULT_AXIS_STEPS_PER_UNIT { 80, 80, 1600, 415 }
744744

745745
/**
746746
* Default Max Feed Rate (mm/s)
@@ -792,7 +792,7 @@
792792
* Override with M205 X Y Z E
793793
*
794794
* "Jerk" specifies the minimum speed change that requires acceleration.
795-
* When changing speed and direction, if the difference is less than the
795+
* When changing speed and , if the difference is less than the
796796
* value set here, it may happen instantaneously.
797797
*/
798798
#if DISABLED(JUNCTION_DEVIATION)
@@ -939,7 +939,7 @@
939939
#define NOZZLE_TO_PROBE_OFFSET { 15, -46, 0 }
940940

941941
// Certain types of probes need to stay away from edges
942-
#define MIN_PROBE_EDGE 10
942+
#define MIN_PROBE_EDGE 5
943943

944944
// X and Y axis travel speed (mm/m) between probes
945945
//@
@@ -960,7 +960,7 @@
960960
* A total of 2 does fast/slow probes with a weighted average.
961961
* A total of 3 or more adds more slow probes, taking the average.
962962
*/
963-
#define MULTIPLE_PROBING 3
963+
#define MULTIPLE_PROBING 5
964964
//#define EXTRA_PROBING 1
965965

966966
/**
@@ -979,7 +979,7 @@
979979
*/
980980
#define Z_CLEARANCE_DEPLOY_PROBE 5 // Z Clearance for Deploy/Stow
981981
#define Z_CLEARANCE_BETWEEN_PROBES 3 // Z Clearance between probe points
982-
#define Z_CLEARANCE_MULTI_PROBE 2 // Z Clearance between multiple probes
982+
#define Z_CLEARANCE_MULTI_PROBE 1 // Z Clearance between multiple probes
983983
#define Z_AFTER_PROBING 5 // Z position after probing is done
984984

985985
#define Z_PROBE_LOW_POINT -2 // Farthest distance below the trigger-point to go before stopping
@@ -1004,7 +1004,7 @@
10041004
* These options are most useful for the BLTouch probe, but may also improve
10051005
* readings with inductive probes and piezo sensors.
10061006
*/
1007-
//#define PROBING_HEATERS_OFF // Turn heaters off when probing
1007+
#define PROBING_HEATERS_OFF // Turn heaters off when probing
10081008
#if ENABLED(PROBING_HEATERS_OFF)
10091009
//#define WAIT_FOR_BED_HEATER // Wait for bed to heat back up between probes (to improve accuracy)
10101010
#endif
@@ -1234,7 +1234,7 @@
12341234
#if EITHER(AUTO_BED_LEVELING_LINEAR, AUTO_BED_LEVELING_BILINEAR)
12351235

12361236
// Set the number of grid points per dimension.
1237-
#define GRID_MAX_POINTS_X 3
1237+
#define GRID_MAX_POINTS_X 5
12381238
#define GRID_MAX_POINTS_Y GRID_MAX_POINTS_X
12391239

12401240
// Probe along the Y axis, advancing X after each column
@@ -1244,7 +1244,7 @@
12441244

12451245
// Beyond the probed grid, continue the implied tilt?
12461246
// Default is to maintain the height of the nearest edge.
1247-
#define EXTRAPOLATE_BEYOND_GRID
1247+
//#define EXTRAPOLATE_BEYOND_GRID
12481248

12491249
//
12501250
// Experimental Subdivision of the grid by Catmull-Rom method.
@@ -1264,7 +1264,7 @@
12641264
//========================= Unified Bed Leveling ============================
12651265
//===========================================================================
12661266

1267-
//#define MESH_EDIT_GFX_OVERLAY // Display a graphics overlay while editing the mesh
1267+
#define MESH_EDIT_GFX_OVERLAY // Display a graphics overlay while editing the mesh
12681268

12691269
#define MESH_INSET 20 // Set Mesh bounds as an inset region of the bed
12701270
#define GRID_MAX_POINTS_X 10 // Don't use more than 15 points per axis, implementation limited.

0 commit comments

Comments
 (0)