🎨 Minimize block->steps.set

This commit is contained in:
Scott Lahteine 2022-04-20 04:29:39 -05:00
parent d5a79c27fe
commit c56fb1c182

View file

@ -1976,22 +1976,24 @@ bool Planner::_populate_block(
// Number of steps for each axis // Number of steps for each axis
// See https://www.corexy.com/theory.html // See https://www.corexy.com/theory.html
block->steps.set(LINEAR_AXIS_LIST(
#if CORE_IS_XY #if CORE_IS_XY
block->steps.set(LINEAR_AXIS_LIST(ABS(da + db), ABS(da - db), ABS(dc), ABS(di), ABS(dj), ABS(dk))); ABS(da + db), ABS(da - db), ABS(dc)
#elif CORE_IS_XZ #elif CORE_IS_XZ
block->steps.set(LINEAR_AXIS_LIST(ABS(da + dc), ABS(db), ABS(da - dc), ABS(di), ABS(dj), ABS(dk))); ABS(da + dc), ABS(db), ABS(da - dc)
#elif CORE_IS_YZ #elif CORE_IS_YZ
block->steps.set(LINEAR_AXIS_LIST(ABS(da), ABS(db + dc), ABS(db - dc), ABS(di), ABS(dj), ABS(dk))); ABS(da), ABS(db + dc), ABS(db - dc)
#elif ENABLED(MARKFORGED_XY) #elif ENABLED(MARKFORGED_XY)
block->steps.set(LINEAR_AXIS_LIST(ABS(da + db), ABS(db), ABS(dc), ABS(di), ABS(dj), ABS(dk))); ABS(da + db), ABS(db), ABS(dc)
#elif ENABLED(MARKFORGED_YX) #elif ENABLED(MARKFORGED_YX)
block->steps.set(LINEAR_AXIS_LIST(ABS(da), ABS(db + da), ABS(dc), ABS(di), ABS(dj), ABS(dk))); ABS(da), ABS(db + da), ABS(dc)
#elif IS_SCARA #elif IS_SCARA
block->steps.set(LINEAR_AXIS_LIST(ABS(da), ABS(db), ABS(dc), ABS(di), ABS(dj), ABS(dk))); ABS(da), ABS(db), ABS(dc)
#else #else // default non-h-bot planning
// default non-h-bot planning ABS(da), ABS(db), ABS(dc)
block->steps.set(LINEAR_AXIS_LIST(ABS(da), ABS(db), ABS(dc), ABS(di), ABS(dj), ABS(dk)));
#endif #endif
, ABS(di), ABS(dj), ABS(dk)
));
/** /**
* This part of the code calculates the total length of the movement. * This part of the code calculates the total length of the movement.