File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -3361,12 +3361,12 @@ void Stepper::endstop_triggered(const AxisEnum axis) {
3361
3361
) * double (0.5 )
3362
3362
#elif ENABLED(MARKFORGED_XY)
3363
3363
axis == CORE_AXIS_1
3364
- ? count_position[CORE_AXIS_1] ENABLED (MARKFORGED_INVERSE, +, -) count_position[CORE_AXIS_2]
3364
+ ? count_position[CORE_AXIS_1] TERN (MARKFORGED_INVERSE, +, -) count_position[CORE_AXIS_2]
3365
3365
: count_position[CORE_AXIS_2]
3366
3366
#elif ENABLED(MARKFORGED_YX)
3367
3367
axis == CORE_AXIS_1
3368
3368
? count_position[CORE_AXIS_1]
3369
- : count_position[CORE_AXIS_2] ENABLED (MARKFORGED_INVERSE, +, -) count_position[CORE_AXIS_1]
3369
+ : count_position[CORE_AXIS_2] TERN (MARKFORGED_INVERSE, +, -) count_position[CORE_AXIS_1]
3370
3370
#else // !IS_CORE
3371
3371
count_position[axis]
3372
3372
#endif
@@ -3552,7 +3552,7 @@ void Stepper::report_positions() {
3552
3552
// Sync block? Sync the stepper counts and return
3553
3553
while (current_block->is_sync ()) {
3554
3554
TERN_ (LASER_FEATURE, if (!(current_block->is_fan_sync () || current_block->is_pwr_sync ()))) _set_position (current_block->position );
3555
-
3555
+
3556
3556
planner.release_current_block ();
3557
3557
3558
3558
// Try to get a new block
You can’t perform that action at this time.
0 commit comments