Browse Source

Fix some include paths

Scott Lahteine 6 years ago
parent
commit
d4d1b28a06

+ 1
- 1
Marlin/src/feature/fwretract.cpp View File

@@ -37,7 +37,7 @@ FWRetract fwretract; // Single instance - this calls the constructor
37 37
 #include "../module/stepper.h"
38 38
 
39 39
 #if ENABLED(RETRACT_SYNC_MIXING)
40
-  #include "../feature/mixing.h"
40
+  #include "mixing.h"
41 41
 #endif
42 42
 
43 43
 // private:

+ 2
- 2
Marlin/src/feature/pause.cpp View File

@@ -38,11 +38,11 @@
38 38
 #include "../module/temperature.h"
39 39
 
40 40
 #if ENABLED(FWRETRACT)
41
-  #include "../feature/fwretract.h"
41
+  #include "fwretract.h"
42 42
 #endif
43 43
 
44 44
 #if ENABLED(FILAMENT_RUNOUT_SENSOR)
45
-  #include "../feature/runout.h"
45
+  #include "runout.h"
46 46
 #endif
47 47
 
48 48
 #include "../lcd/ultralcd.h"

+ 1
- 1
Marlin/src/module/configuration_store.cpp View File

@@ -89,7 +89,7 @@
89 89
 #endif
90 90
 
91 91
 #if HAS_BED_PROBE
92
-  #include "../module/probe.h"
92
+  #include "probe.h"
93 93
 #endif
94 94
 
95 95
 #include "../feature/fwretract.h"

+ 1
- 1
Marlin/src/module/delta.cpp View File

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

+ 2
- 2
Marlin/src/module/endstops.cpp View File

@@ -29,7 +29,7 @@
29 29
 
30 30
 #include "../Marlin.h"
31 31
 #include "../sd/cardreader.h"
32
-#include "../module/temperature.h"
32
+#include "temperature.h"
33 33
 #include "../lcd/ultralcd.h"
34 34
 
35 35
 #if ENABLED(ENDSTOP_INTERRUPTS_FEATURE)
@@ -37,7 +37,7 @@
37 37
 #endif
38 38
 
39 39
 #if ENABLED(ABORT_ON_ENDSTOP_HIT_FEATURE_ENABLED) && ENABLED(SDSUPPORT)
40
-  #include "../module/printcounter.h" // for print_job_timer
40
+  #include "printcounter.h" // for print_job_timer
41 41
 #endif
42 42
 
43 43
 Endstops endstops;

+ 1
- 1
Marlin/src/module/motion.h View File

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

+ 1
- 1
Marlin/src/module/planner.cpp View File

@@ -65,7 +65,7 @@
65 65
 #include "planner.h"
66 66
 #include "stepper.h"
67 67
 #include "motion.h"
68
-#include "../module/temperature.h"
68
+#include "temperature.h"
69 69
 #include "../lcd/ultralcd.h"
70 70
 #include "../core/language.h"
71 71
 #include "../gcode/parser.h"

+ 2
- 2
Marlin/src/module/probe.cpp View File

@@ -47,7 +47,7 @@
47 47
 #endif
48 48
 
49 49
 #if ENABLED(DELTA)
50
-  #include "../module/delta.h"
50
+  #include "delta.h"
51 51
 #endif
52 52
 
53 53
 #if ENABLED(BABYSTEP_ZPROBE_OFFSET)
@@ -57,7 +57,7 @@
57 57
 float zprobe_zoffset; // Initialized by settings.load()
58 58
 
59 59
 #if HAS_Z_SERVO_PROBE
60
-  #include "../module/servo.h"
60
+  #include "servo.h"
61 61
 #endif
62 62
 
63 63
 #if ENABLED(SENSORLESS_PROBING)

+ 1
- 1
Marlin/src/module/stepper.cpp View File

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

+ 1
- 1
Marlin/src/module/stepper.h View File

@@ -223,7 +223,7 @@
223 223
   #include "speed_lookuptable.h"
224 224
 #endif
225 225
 
226
-#include "../module/planner.h"
226
+#include "planner.h"
227 227
 #include "../core/language.h"
228 228
 
229 229
 class Stepper {

+ 1
- 1
Marlin/src/module/stepper_indirection.cpp View File

@@ -35,7 +35,7 @@
35 35
 
36 36
 #include "../inc/MarlinConfig.h"
37 37
 
38
-#include "../module/stepper.h"
38
+#include "stepper.h"
39 39
 
40 40
 #if HAS_DRIVER(L6470)
41 41
   #include "L6470/L6470_Marlin.h"

+ 1
- 1
Marlin/src/module/tool_change.cpp View File

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

Loading…
Cancel
Save