🐛 Fix BLTOUCH_HS_MODE config

This commit is contained in:
Scott Lahteine
2023-04-11 23:22:36 -05:00
parent 7369a6a37b
commit f5c7b190f6
9 changed files with 26 additions and 25 deletions

View File

@@ -76,9 +76,14 @@
#endif // !defined(NUM_SERVOS)
// Convenience override for a BLTouch alone
#if ENABLED(BLTOUCH) && NUM_SERVOS == 1
#undef SERVO_DELAY
#define SERVO_DELAY { 50 }
#if ENABLED(BLTOUCH)
#ifdef BLTOUCH_HS_MODE
#define HAS_BLTOUCH_HS_MODE 1
#endif
#if NUM_SERVOS == 1
#undef SERVO_DELAY
#define SERVO_DELAY { 50 }
#endif
#endif
#if !HAS_BED_PROBE