diff --git a/Marlin/Configuration.h b/Marlin/Configuration.h index 97d5b44b287b6e66136979ce1bf4ca65c24702c7..ef6c3ff52e410d5fe59a0f8e36cad20a1ce6fdc9 100644 --- a/Marlin/Configuration.h +++ b/Marlin/Configuration.h @@ -577,6 +577,7 @@ */ //#define BLTOUCH //#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/Marlin_main.cpp b/Marlin/Marlin_main.cpp index 7ee3ed38797a16908677cde93ecd3586b8aaed89..a894c63aaca5437080a844a6cb560b9c1ee5c80b 100755 --- a/Marlin/Marlin_main.cpp +++ b/Marlin/Marlin_main.cpp @@ -2067,10 +2067,11 @@ static void clean_up_after_endstop_or_probe_move() { // // The BL-Touch probes have a HAL effect sensor. The high currents switching - // on and off cause big magnetic fields that can affect the reliability of the + // on and off cause big magnetic fields that can affect the repeatability of the // sensor. So, for BL-Touch probes, we turn off the heaters during the actual probe. // And then we quickly turn them back on after we have sampled the point // + #if ENABLED(BLTOUCH_HEATERS_OFF) void turn_heaters_on_or_off_for_bltouch(const bool deploy) { static int8_t bltouch_recursion_cnt=0; static millis_t last_emi_protection=0; @@ -2105,9 +2106,12 @@ static void clean_up_after_endstop_or_probe_move() { } } } + #endif void set_bltouch_deployed(const bool deploy) { + #if ENABLED(BLTOUCH_HEATERS_OFF) turn_heaters_on_or_off_for_bltouch(deploy); + #endif if (deploy && TEST_BLTOUCH()) { // If BL-Touch says it's triggered bltouch_command(BLTOUCH_RESET); // try to reset it. bltouch_command(BLTOUCH_DEPLOY); // Also needs to deploy and stow to @@ -2143,7 +2147,9 @@ static void clean_up_after_endstop_or_probe_move() { #endif #if ENABLED(BLTOUCH) + #if ENABLED(BLTOUCH_HEATERS_OFF) turn_heaters_on_or_off_for_bltouch(deploy); + #endif #endif if (endstops.z_probe_enabled == deploy) return false; diff --git a/Marlin/example_configurations/Cartesio/Configuration.h b/Marlin/example_configurations/Cartesio/Configuration.h index 363f38c4a3d1a71b59c8aba61c450e15767f2084..54bc667cc69bd02e9c271a36807783719736b7e1 100644 --- a/Marlin/example_configurations/Cartesio/Configuration.h +++ b/Marlin/example_configurations/Cartesio/Configuration.h @@ -575,7 +575,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/Felix/Configuration.h b/Marlin/example_configurations/Felix/Configuration.h index b252f6abd7c2db71dca08d18fba302c6cd20cc21..e9eb6c8845b2c67c410c45c0055b4a7ad77f7e6e 100644 --- a/Marlin/example_configurations/Felix/Configuration.h +++ b/Marlin/example_configurations/Felix/Configuration.h @@ -559,7 +559,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/Felix/DUAL/Configuration.h b/Marlin/example_configurations/Felix/DUAL/Configuration.h index b2c8aa78f8bba9242a6c94f889f70787dec15145..b64969d5f9596ccb19aa9808a1c515b9c3123652 100644 --- a/Marlin/example_configurations/Felix/DUAL/Configuration.h +++ b/Marlin/example_configurations/Felix/DUAL/Configuration.h @@ -559,7 +559,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h b/Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h index edc4bc320b5ee8cd8c68dead1853214eea8d00b8..105592b68feee677e2b3bc63aa47365893014ba9 100644 --- a/Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h +++ b/Marlin/example_configurations/FolgerTech-i3-2020/Configuration.h @@ -579,7 +579,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/Hephestos/Configuration.h b/Marlin/example_configurations/Hephestos/Configuration.h index bee7a1a4256a58961a55e8e3c66266b7c4382959..43b66aa16a69f5707ef7c0c5aa5a31f07313cadf 100644 --- a/Marlin/example_configurations/Hephestos/Configuration.h +++ b/Marlin/example_configurations/Hephestos/Configuration.h @@ -567,7 +567,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/Hephestos_2/Configuration.h b/Marlin/example_configurations/Hephestos_2/Configuration.h index 1e7544e40644bf3484f6da3d3d6a3ed255ee69e4..76db2d1dc700831a2f113611b6dbc363d1a97c87 100644 --- a/Marlin/example_configurations/Hephestos_2/Configuration.h +++ b/Marlin/example_configurations/Hephestos_2/Configuration.h @@ -570,7 +570,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/K8200/Configuration.h b/Marlin/example_configurations/K8200/Configuration.h index 1dfe9a9e8be9cea7690ecd9ff8a0daf6924e8998..e52e7509c95adc9085efee15f210adceb794d98d 100644 --- a/Marlin/example_configurations/K8200/Configuration.h +++ b/Marlin/example_configurations/K8200/Configuration.h @@ -605,7 +605,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/K8400/Configuration.h b/Marlin/example_configurations/K8400/Configuration.h index 8707c3ca9d9aa7095a010e2c5eb90bcaabc0087f..c015a797d31a38983ac9b834005827e06ac56569 100644 --- a/Marlin/example_configurations/K8400/Configuration.h +++ b/Marlin/example_configurations/K8400/Configuration.h @@ -576,7 +576,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/K8400/Dual-head/Configuration.h b/Marlin/example_configurations/K8400/Dual-head/Configuration.h index a92a5e921f982f78557f247bdaeeca37f0bbf245..b8333c67b6684ffbabf7036426dec87f033ba269 100644 --- a/Marlin/example_configurations/K8400/Dual-head/Configuration.h +++ b/Marlin/example_configurations/K8400/Dual-head/Configuration.h @@ -576,7 +576,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h b/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h index 83beeb4d77eb3e157dd528b763ec5eb4cca5433c..54371f08f903315d69b9bf603e6ac1dc61647b87 100644 --- a/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h +++ b/Marlin/example_configurations/RepRapWorld/Megatronics/Configuration.h @@ -576,7 +576,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/RigidBot/Configuration.h b/Marlin/example_configurations/RigidBot/Configuration.h index 56eb3408fd2a18955748a7be060d2ca19838907b..06bd76904040bc0513e9385f7876ddfd90b457cb 100644 --- a/Marlin/example_configurations/RigidBot/Configuration.h +++ b/Marlin/example_configurations/RigidBot/Configuration.h @@ -575,7 +575,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/SCARA/Configuration.h b/Marlin/example_configurations/SCARA/Configuration.h index 4115db2734cb8d4121dcb3b4c3ae9e39acb1d112..feababc9cf3ff63b51a2bf712497b99494740ab6 100644 --- a/Marlin/example_configurations/SCARA/Configuration.h +++ b/Marlin/example_configurations/SCARA/Configuration.h @@ -591,7 +591,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/TAZ4/Configuration.h b/Marlin/example_configurations/TAZ4/Configuration.h index 4955dab12d209bd3ded9d658504871444a8f2f00..297a6e45693f3af49ae76302ebd60026154d98b2 100644 --- a/Marlin/example_configurations/TAZ4/Configuration.h +++ b/Marlin/example_configurations/TAZ4/Configuration.h @@ -596,7 +596,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/TinyBoy2/Configuration.h b/Marlin/example_configurations/TinyBoy2/Configuration.h index 3755702929fa9bf0d036f09fecf4628f4c4545f3..ebc5974747ecf0015ec3d0139c1e33abd5d94f45 100644 --- a/Marlin/example_configurations/TinyBoy2/Configuration.h +++ b/Marlin/example_configurations/TinyBoy2/Configuration.h @@ -627,7 +627,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/WITBOX/Configuration.h b/Marlin/example_configurations/WITBOX/Configuration.h index 4eec6b503776da6bb2dfdaef8ff4dee8dbf3aec1..1ffa26723c813be553044c76755ac87d116def2b 100644 --- a/Marlin/example_configurations/WITBOX/Configuration.h +++ b/Marlin/example_configurations/WITBOX/Configuration.h @@ -567,7 +567,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/adafruit/ST7565/Configuration.h b/Marlin/example_configurations/adafruit/ST7565/Configuration.h index 7498087fb1b4457bc36ba4e497b81a5da15c4046..faa4f367b1798a7c1fad9193877a0ce59526dfbd 100644 --- a/Marlin/example_configurations/adafruit/ST7565/Configuration.h +++ b/Marlin/example_configurations/adafruit/ST7565/Configuration.h @@ -576,7 +576,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h b/Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h index aee1c8de53531f9266814fa4fa7a38a976c09da3..5e1f3facc6a4b80bd8f84a5aad82066c1fc8be93 100644 --- a/Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h +++ b/Marlin/example_configurations/delta/FLSUN/auto_calibrate/Configuration.h @@ -650,7 +650,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h b/Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h index 3f572c158c6ee6791d710b0374bb9334d7b5f7d2..1c468198d0ae7cc143eb11fcd47ba8861cfe4502 100644 --- a/Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h +++ b/Marlin/example_configurations/delta/FLSUN/kossel_mini/Configuration.h @@ -651,7 +651,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/generic/Configuration.h b/Marlin/example_configurations/delta/generic/Configuration.h index 55662e03d2e238a03b90b46a4c50e51e3851b132..3cdda90028e2ef5301c9830780b6ac5ae8d0c260 100644 --- a/Marlin/example_configurations/delta/generic/Configuration.h +++ b/Marlin/example_configurations/delta/generic/Configuration.h @@ -640,7 +640,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/kossel_mini/Configuration.h b/Marlin/example_configurations/delta/kossel_mini/Configuration.h index 2cbe82a98aab947b0baf87b55db0d4c2548acfef..c5f5c5c07bbac4c1feb6816e7461e6892c6173a8 100644 --- a/Marlin/example_configurations/delta/kossel_mini/Configuration.h +++ b/Marlin/example_configurations/delta/kossel_mini/Configuration.h @@ -633,7 +633,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/kossel_pro/Configuration.h b/Marlin/example_configurations/delta/kossel_pro/Configuration.h index 862db686df6738dd8d0160054207b4dc46ca90bb..256f3a9ddf92413f45e45ef40e407fe9ae9fdf19 100644 --- a/Marlin/example_configurations/delta/kossel_pro/Configuration.h +++ b/Marlin/example_configurations/delta/kossel_pro/Configuration.h @@ -634,7 +634,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/delta/kossel_xl/Configuration.h b/Marlin/example_configurations/delta/kossel_xl/Configuration.h index d953a105743e5629026f7f40d5064e9bf0c2c2e1..fd09b22098a552e16b375dfd48f262dd3ed2f92b 100644 --- a/Marlin/example_configurations/delta/kossel_xl/Configuration.h +++ b/Marlin/example_configurations/delta/kossel_xl/Configuration.h @@ -653,7 +653,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h b/Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h index 71e75d305612045939ec0e0eca3a7c0aaeca6de2..2fcd20debe77e8a9b15f7ee0d211776d8b3bdc18 100644 --- a/Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h +++ b/Marlin/example_configurations/gCreate_gMax1.5+/Configuration.h @@ -590,7 +590,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ #define BLTOUCH -#define BLTOUCH_DELAY 500 // (ms) Enable and increase if needed +#define BLTOUCH_DELAY 500 // (ms) Enable and increase if needed +#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/makibox/Configuration.h b/Marlin/example_configurations/makibox/Configuration.h index b997ae09cba4a20cd30f1df67b5305a9b4583fcc..fae782350bd74730b28a0c22dab32797d80d1b3e 100644 --- a/Marlin/example_configurations/makibox/Configuration.h +++ b/Marlin/example_configurations/makibox/Configuration.h @@ -579,7 +579,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/tvrrug/Round2/Configuration.h b/Marlin/example_configurations/tvrrug/Round2/Configuration.h index bcca9b24a9f00f3247dc01c472dc5cdd455c0185..093cb37ff8d22f1ea315966cc7d5014ceabeea28 100644 --- a/Marlin/example_configurations/tvrrug/Round2/Configuration.h +++ b/Marlin/example_configurations/tvrrug/Round2/Configuration.h @@ -572,7 +572,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017 diff --git a/Marlin/example_configurations/wt150/Configuration.h b/Marlin/example_configurations/wt150/Configuration.h index 33a98fc8fe66068b2ff70984ae1fa39c9da40926..324f3678e01bc5302af686abca7606063d6726aa 100644 --- a/Marlin/example_configurations/wt150/Configuration.h +++ b/Marlin/example_configurations/wt150/Configuration.h @@ -581,7 +581,8 @@ * with the possible exception of Z_ENDSTOP_SERVO_NR. */ //#define BLTOUCH -//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed +//#define BLTOUCH_HEATERS_OFF // if defined the printer's heaters are turned off during probe event /** * BLTouch WARNING - ONLY APPLIES TO VERSIONS OF MARLIN BEFORE 15 FEB 2017