|
|
@ -594,6 +594,14 @@ float soft_endstop_min[XYZ] = { X_MIN_BED, Y_MIN_BED, Z_MIN_POS },
|
|
|
|
|
|
|
|
|
|
|
|
// Calculate and execute the segments
|
|
|
|
// Calculate and execute the segments
|
|
|
|
for (uint16_t s = segments + 1; --s;) {
|
|
|
|
for (uint16_t s = segments + 1; --s;) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static millis_t next_idle_ms = millis() + 200UL;
|
|
|
|
|
|
|
|
thermalManager.manage_heater(); // This returns immediately if not really needed.
|
|
|
|
|
|
|
|
if (ELAPSED(millis(), next_idle_ms)) {
|
|
|
|
|
|
|
|
next_idle_ms = millis() + 200UL;
|
|
|
|
|
|
|
|
idle();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
LOOP_XYZE(i) raw[i] += segment_distance[i];
|
|
|
|
LOOP_XYZE(i) raw[i] += segment_distance[i];
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
#if ENABLED(DELTA)
|
|
|
|
DELTA_RAW_IK(); // Delta can inline its kinematics
|
|
|
|
DELTA_RAW_IK(); // Delta can inline its kinematics
|
|
|
|