Skip to content

Commit e5ce65c

Browse files
authored
🔧 BIQU MicroProbe + FT_MOTION sanity-check (#27302)
1 parent 851257c commit e5ce65c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

Marlin/Configuration.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1467,7 +1467,7 @@
14671467
* A lightweight, solenoid-driven probe.
14681468
* For information about this sensor https://github.com/bigtreetech/MicroProbe
14691469
*
1470-
* Also requires: PROBE_ENABLE_DISABLE
1470+
* Also requires: PROBE_ENABLE_DISABLE, ENDSTOP_INTERRUPTS_FEATURE if FT_MOTION is enabled.
14711471
*/
14721472
//#define BIQU_MICROPROBE_V1 // Triggers HIGH
14731473
//#define BIQU_MICROPROBE_V2 // Triggers LOW

Marlin/src/inc/SanityCheck.h

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1389,6 +1389,10 @@ static_assert(NUM_SERVOS <= NUM_SERVO_PLUGS, "NUM_SERVOS (or some servo index) i
13891389
#error "BIQU MicroProbe requires a PROBE_ENABLE_PIN."
13901390
#endif
13911391

1392+
#if ENABLED(FT_MOTION) && DISABLED(ENDSTOP_INTERRUPTS_FEATURE)
1393+
#error "BIQU Microprobe requires ENDSTOP_INTERRUPTS_FEATURE with FT_MOTION."
1394+
#endif
1395+
13921396
#if ENABLED(BIQU_MICROPROBE_V1)
13931397
#if ENABLED(INVERTED_PROBE_STATE)
13941398
#if Z_MIN_PROBE_ENDSTOP_HIT_STATE != LOW

0 commit comments

Comments
 (0)