Fix some include paths

This commit is contained in:
Scott Lahteine 2019-02-04 03:41:55 -06:00
parent 0d720a6ff4
commit d4d1b28a06
12 changed files with 15 additions and 15 deletions

View file

@ -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:

View file

@ -38,11 +38,11 @@
#include "../module/temperature.h"
#if ENABLED(FWRETRACT)
#include "../feature/fwretract.h"
#include "fwretract.h"
#endif
#if ENABLED(FILAMENT_RUNOUT_SENSOR)
#include "../feature/runout.h"
#include "runout.h"
#endif
#include "../lcd/ultralcd.h"

View file

@ -89,7 +89,7 @@
#endif
#if HAS_BED_PROBE
#include "../module/probe.h"
#include "probe.h"
#endif
#include "../feature/fwretract.h"

View file

@ -39,7 +39,7 @@
#if ENABLED(SENSORLESS_HOMING)
#include "../feature/tmc_util.h"
#include "../module/stepper_indirection.h"
#include "stepper_indirection.h"
#endif
// Initialized by settings.load()

View file

@ -29,7 +29,7 @@
#include "../Marlin.h"
#include "../sd/cardreader.h"
#include "../module/temperature.h"
#include "temperature.h"
#include "../lcd/ultralcd.h"
#if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
@ -37,7 +37,7 @@
#endif
#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
#endif
Endstops endstops;

View file

@ -31,7 +31,7 @@
#include "../inc/MarlinConfig.h"
#if IS_SCARA
#include "../module/scara.h"
#include "scara.h"
#endif
// Axis homed and known-position states

View file

@ -65,7 +65,7 @@
#include "planner.h"
#include "stepper.h"
#include "motion.h"
#include "../module/temperature.h"
#include "temperature.h"
#include "../lcd/ultralcd.h"
#include "../core/language.h"
#include "../gcode/parser.h"

View file

@ -47,7 +47,7 @@
#endif
#if ENABLED(DELTA)
#include "../module/delta.h"
#include "delta.h"
#endif
#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"
#endif
#if ENABLED(SENSORLESS_PROBING)

View file

@ -89,7 +89,7 @@ Stepper stepper; // Singleton
#include "planner.h"
#include "motion.h"
#include "../module/temperature.h"
#include "temperature.h"
#include "../lcd/ultralcd.h"
#include "../core/language.h"
#include "../gcode/queue.h"

View file

@ -223,7 +223,7 @@
#include "speed_lookuptable.h"
#endif
#include "../module/planner.h"
#include "planner.h"
#include "../core/language.h"
class Stepper {

View file

@ -35,7 +35,7 @@
#include "../inc/MarlinConfig.h"
#include "../module/stepper.h"
#include "stepper.h"
#if HAS_DRIVER(L6470)
#include "L6470/L6470_Marlin.h"

View file

@ -47,7 +47,7 @@
#endif
#if ENABLED(SWITCHING_EXTRUDER) || ENABLED(SWITCHING_NOZZLE) || ENABLED(SWITCHING_TOOLHEAD)
#include "../module/servo.h"
#include "servo.h"
#endif
#if ENABLED(EXT_SOLENOID) && DISABLED(PARKING_EXTRUDER)