🧑💻 Change Marlin DIR bits: 1=Forward, 0=Reverse (#25791)
This commit is contained in:
@@ -4037,8 +4037,12 @@ static_assert(_PLUS_TEST(3), "DEFAULT_MAX_ACCELERATION values must be positive."
|
||||
/**
|
||||
* Fixed-Time Motion limitations
|
||||
*/
|
||||
#if ENABLED(FT_MOTION) && (NUM_AXES > 3 || E_STEPPERS > 1 || NUM_Z_STEPPERS > 1 || ANY(DUAL_X_CARRIAGE, HAS_SYNCED_X_STEPPERS, HAS_SYNCED_Y_STEPPERS, HAS_MULTI_EXTRUDER, MIXING_EXTRUDER))
|
||||
#error "FT_MOTION is currently limited to machines with 3 linear axes and a single extruder."
|
||||
#if ENABLED(FT_MOTION)
|
||||
#if NUM_AXES > 3
|
||||
#error "FT_MOTION is currently limited to machines with 3 linear axes."
|
||||
#elif ENABLED(MIXING_EXTRUDER)
|
||||
#error "FT_MOTION is incompatible with MIXING_EXTRUDER."
|
||||
#endif
|
||||
#endif
|
||||
|
||||
// Multi-Stepping Limit
|
||||
|
Reference in New Issue
Block a user