@ -37,7 +37,7 @@ FWRetract fwretract; // Single instance - this calls the constructor
#include "../module/stepper.h"
#if ENABLED(RETRACT_SYNC_MIXING)
#include "../feature/mixing.h"
#include "mixing.h"
#endif
// private:
@ -38,11 +38,11 @@
#include "../module/temperature.h"
#if ENABLED(FWRETRACT)
#include "../feature/fwretract.h"
#include "fwretract.h"
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
#include "../feature/runout.h"
#include "runout.h"
#include "../lcd/ultralcd.h"
@ -89,7 +89,7 @@
#if HAS_BED_PROBE
#include "../module/probe.h"
#include "probe.h"
@ -39,7 +39,7 @@
#if ENABLED(SENSORLESS_HOMING)
#include "../feature/tmc_util.h"
#include "../module/stepper_indirection.h"
#include "stepper_indirection.h"
// Initialized by settings.load()
@ -29,7 +29,7 @@
#include "../Marlin.h"
#include "../sd/cardreader.h"
#include "temperature.h"
#if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
@ -37,7 +37,7 @@
#if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) && ENABLED(SDSUPPORT)
#include "../module/printcounter.h" // for print_job_timer
#include "printcounter.h" // for print_job_timer
Endstops endstops;
@ -31,7 +31,7 @@
#include "../inc/MarlinConfig.h"
#if IS_SCARA
#include "../module/scara.h"
#include "scara.h"
// Axis homed and known-position states
@ -65,7 +65,7 @@
#include "planner.h"
#include "stepper.h"
#include "motion.h"
#include "../core/language.h"
#include "../gcode/parser.h"
@ -47,7 +47,7 @@
#if ENABLED(DELTA)
#include "../module/delta.h"
#include "delta.h"
#if ENABLED(BABYSTEP_ZPROBE_OFFSET)
@ -57,7 +57,7 @@
float zprobe_zoffset; // Initialized by settings.load()
#if HAS_Z_SERVO_PROBE
#include "../module/servo.h"
#include "servo.h"
#if ENABLED(SENSORLESS_PROBING)
@ -89,7 +89,7 @@ Stepper stepper; // Singleton
#include "../gcode/queue.h"
@ -223,7 +223,7 @@
#include "speed_lookuptable.h"
#include "../module/planner.h"
class Stepper {
@ -35,7 +35,7 @@
#if HAS_DRIVER(L6470)
#include "L6470/L6470_Marlin.h"
#if ENABLED(SWITCHING_EXTRUDER) || ENABLED(SWITCHING_NOZZLE) || ENABLED(SWITCHING_TOOLHEAD)
#if ENABLED(EXT_SOLENOID) && DISABLED(PARKING_EXTRUDER)