Update descriptions and dont call unneeded functions
This commit is contained in:
parent
fe346cd4d1
commit
eb91f08725
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -70,19 +70,23 @@ bool BLTouch::set_deployed(const bool in_deploy) {
|
||||
}
|
||||
}
|
||||
|
||||
#if ENABLED(BLTOUCH_FORCE_5V_MODE)
|
||||
set_5V_mode();
|
||||
#elif ENABLED(BLTOUCH_FORCE_OPEN_DRAIN_MODE)
|
||||
set_OD_mode();
|
||||
#elif ENABLED(ENDSTOPPULLUPS) || ALL(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, ENDSTOPPULLUP_ZMIN) || (USES_Z_MIN_PROBE_ENDSTOP && ENABLED(ENDSTOPPULLUP_ZMIN_PROBE))
|
||||
set_5V_mode(); // Assume 5V DC logic level if endstop pullup resistors are enabled
|
||||
#else
|
||||
set_OD_mode();
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
#if ENABLED(BLTOUCH_FORCE_5V_MODE)
|
||||
set_5V_mode();
|
||||
#elif ENABLED(BLTOUCH_FORCE_OPEN_DRAIN_MODE)
|
||||
set_OD_mode();
|
||||
#elif ENABLED(ENDSTOPPULLUPS) || ALL(Z_MIN_PROBE_USES_Z_MIN_ENDSTOP_PIN, ENDSTOPPULLUP_ZMIN) || (USES_Z_MIN_PROBE_ENDSTOP && ENABLED(ENDSTOPPULLUP_ZMIN_PROBE))
|
||||
set_5V_mode(); // Assume 5V DC logic level if endstop pullup resistors are enabled
|
||||
#else
|
||||
set_OD_mode();
|
||||
#endif
|
||||
#endif
|
||||
|
||||
if (in_deploy) {
|
||||
_deploy();
|
||||
set_SW_mode(); // Ensure Switch mode is activated for BLTouch V3. Ignored on V2.
|
||||
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
set_SW_mode();
|
||||
#endif
|
||||
}
|
||||
else _stow();
|
||||
|
||||
|
@ -43,21 +43,9 @@ public:
|
||||
FORCE_INLINE static void reset() { command(BLTOUCH_RESET); }
|
||||
FORCE_INLINE static void selftest() { command(BLTOUCH_SELFTEST); }
|
||||
|
||||
FORCE_INLINE static void set_5V_mode() {
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
command(BLTOUCH_5V_MODE);
|
||||
#endif
|
||||
}
|
||||
FORCE_INLINE static void set_OD_mode() {
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
command(BLTOUCH_OD_MODE);
|
||||
#endif
|
||||
}
|
||||
FORCE_INLINE static void set_SW_mode() {
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
command(BLTOUCH_SW_MODE);
|
||||
#endif
|
||||
}
|
||||
FORCE_INLINE static void set_5V_mode() { command(BLTOUCH_5V_MODE); }
|
||||
FORCE_INLINE static void set_OD_mode() { command(BLTOUCH_OD_MODE); }
|
||||
FORCE_INLINE static void set_SW_mode() { command(BLTOUCH_SW_MODE); }
|
||||
|
||||
FORCE_INLINE static bool deploy() { return set_deployed(true); }
|
||||
FORCE_INLINE static bool stow() { return set_deployed(false); }
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -824,7 +824,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -838,7 +838,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -829,7 +829,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -865,7 +865,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -831,7 +831,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -828,7 +828,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -819,7 +819,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -806,7 +806,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -819,7 +819,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -806,7 +806,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -817,7 +817,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -828,7 +828,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -819,7 +819,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -837,7 +837,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -828,7 +828,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -822,7 +822,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -822,7 +822,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -828,7 +828,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -829,7 +829,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -800,7 +800,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -800,7 +800,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -810,7 +810,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -824,7 +824,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -901,7 +901,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -847,7 +847,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -834,7 +834,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -801,7 +801,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -801,7 +801,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -833,7 +833,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -825,7 +825,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -834,7 +834,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -833,7 +833,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -822,7 +822,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -830,7 +830,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -838,7 +838,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -838,7 +838,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -817,7 +817,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -822,7 +822,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -822,7 +822,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -819,7 +819,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -826,7 +826,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -858,7 +858,10 @@ Black rubber belt(MXL), 18 - tooth aluminium pulley : 87.489 step per mm (Huxley
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -816,7 +816,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -831,7 +831,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -820,7 +820,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -849,7 +849,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -869,7 +869,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -839,7 +839,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -817,7 +817,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -829,7 +829,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -827,7 +827,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -847,7 +847,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -837,7 +837,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -828,7 +828,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -818,7 +818,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -954,7 +954,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -900,7 +900,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -900,7 +900,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -900,7 +900,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -890,7 +890,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -905,7 +905,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -890,7 +890,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -890,7 +890,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -890,7 +890,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -883,7 +883,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -893,7 +893,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -821,7 +821,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -820,7 +820,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -813,7 +813,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
@ -823,7 +823,10 @@
|
||||
#if ENABLED(BLTOUCH)
|
||||
//#define BLTOUCH_DELAY 375 // (ms) Enable and increase if needed
|
||||
|
||||
// BLTouch V3.0 and newer smart series
|
||||
/** BLTouch V3.0 and newer smart series
|
||||
* Functions with most genuine sensors, however clones have been reporting issues with the new code.
|
||||
* If the pin trigger is not detected, first try swapping black and white wires then toggle this.
|
||||
*/
|
||||
//#define BLTOUCH_V3
|
||||
#if ENABLED(BLTOUCH_V3)
|
||||
//#define BLTOUCH_FORCE_5V_MODE
|
||||
|
Loading…
Reference in New Issue
Block a user