Skip to content

Commit 135f39f

Browse files
narno2202EvilGremlin
authored andcommitted
🔧 BIQU MicroProbe + FT_MOTION sanity-check (MarlinFirmware#27302)
1 parent e371e60 commit 135f39f

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
@@ -1531,7 +1531,7 @@
15311531
* A lightweight, solenoid-driven probe.
15321532
* For information about this sensor https://github.com/bigtreetech/MicroProbe
15331533
*
1534-
* Also requires: PROBE_ENABLE_DISABLE
1534+
* Also requires: PROBE_ENABLE_DISABLE, ENDSTOP_INTERRUPTS_FEATURE if FT_MOTION is enabled.
15351535
*/
15361536
//#define BIQU_MICROPROBE_V1 // Triggers HIGH
15371537
//#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)