Disable SW_MODE for BLTouch. Also reenable mesh insets to ensure the nozzle stays inside boundries.

This commit is contained in:
Knutwurst
2021-04-21 12:40:55 +02:00
parent d7a11222a8
commit 5ffe3eed64
2 changed files with 6 additions and 6 deletions

View File

@@ -644,7 +644,7 @@
// Feature: Switch into SW mode after a deploy. It makes the output pulse longer. Can be useful
// in special cases, like noisy or filtered input configurations.
#define BLTOUCH_FORCE_SW_MODE
//#define BLTOUCH_FORCE_SW_MODE
/**
* Settings for BLTouch Smart 3.0 and 3.1
@@ -1579,10 +1579,10 @@
#if EITHER(MESH_BED_LEVELING, AUTO_BED_LEVELING_UBL)
// Override the mesh area if the automatic (max) area is too large
//#define MESH_MIN_X MESH_INSET
//#define MESH_MIN_Y MESH_INSET
//#define MESH_MAX_X X_BED_SIZE - (MESH_INSET)
//#define MESH_MAX_Y Y_BED_SIZE - (MESH_INSET)
#define MESH_MIN_X MESH_INSET
#define MESH_MIN_Y MESH_INSET
#define MESH_MAX_X X_BED_SIZE - (MESH_INSET)
#define MESH_MAX_Y Y_BED_SIZE - (MESH_INSET)
#endif
/**