Move some includes around to uncover missing deps
This commit is contained in:
		@@ -215,7 +215,6 @@ void manage_inactivity(bool ignore_stepper_queue = false);
 | 
				
			|||||||
/**
 | 
					/**
 | 
				
			||||||
 * The axis order in all axis related arrays is X, Y, Z, E
 | 
					 * The axis order in all axis related arrays is X, Y, Z, E
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
#define NUM_AXIS 4
 | 
					 | 
				
			||||||
#define _AXIS(AXIS) AXIS ##_AXIS
 | 
					#define _AXIS(AXIS) AXIS ##_AXIS
 | 
				
			||||||
 | 
					
 | 
				
			||||||
void enable_all_steppers();
 | 
					void enable_all_steppers();
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -29,10 +29,12 @@
 | 
				
			|||||||
  Modified 14 February 2016 by Andreas Hardtung (added tx buffer)
 | 
					  Modified 14 February 2016 by Andreas Hardtung (added tx buffer)
 | 
				
			||||||
*/
 | 
					*/
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Marlin.h"
 | 
					 | 
				
			||||||
#include "MarlinSerial.h"
 | 
					#include "MarlinSerial.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "stepper.h"
 | 
					#include "stepper.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "Marlin.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef USBCON
 | 
					#ifndef USBCON
 | 
				
			||||||
// this next line disables the entire HardwareSerial.cpp,
 | 
					// this next line disables the entire HardwareSerial.cpp,
 | 
				
			||||||
// this is so I can support Attiny series and any other chip without a UART
 | 
					// this is so I can support Attiny series and any other chip without a UART
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -31,13 +31,8 @@
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
#ifndef MarlinSerial_h
 | 
					#ifndef MarlinSerial_h
 | 
				
			||||||
#define MarlinSerial_h
 | 
					#define MarlinSerial_h
 | 
				
			||||||
#include "Marlin.h"
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
#ifndef CRITICAL_SECTION_START
 | 
					 | 
				
			||||||
  #define CRITICAL_SECTION_START  unsigned char _sreg = SREG; cli();
 | 
					 | 
				
			||||||
  #define CRITICAL_SECTION_END    SREG = _sreg;
 | 
					 | 
				
			||||||
#endif
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "MarlinConfig.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#ifndef SERIAL_PORT
 | 
					#ifndef SERIAL_PORT
 | 
				
			||||||
  #define SERIAL_PORT 0
 | 
					  #define SERIAL_PORT 0
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -61,6 +61,7 @@
 | 
				
			|||||||
#include "math.h"
 | 
					#include "math.h"
 | 
				
			||||||
#include "nozzle.h"
 | 
					#include "nozzle.h"
 | 
				
			||||||
#include "duration_t.h"
 | 
					#include "duration_t.h"
 | 
				
			||||||
 | 
					#include "types.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(USE_WATCHDOG)
 | 
					#if ENABLED(USE_WATCHDOG)
 | 
				
			||||||
  #include "watchdog.h"
 | 
					  #include "watchdog.h"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -20,13 +20,15 @@
 | 
				
			|||||||
 *
 | 
					 *
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Marlin.h"
 | 
					 | 
				
			||||||
#include "cardreader.h"
 | 
					#include "cardreader.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "ultralcd.h"
 | 
					#include "ultralcd.h"
 | 
				
			||||||
#include "stepper.h"
 | 
					#include "stepper.h"
 | 
				
			||||||
#include "temperature.h"
 | 
					#include "temperature.h"
 | 
				
			||||||
#include "language.h"
 | 
					#include "language.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "Marlin.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(SDSUPPORT)
 | 
					#if ENABLED(SDSUPPORT)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
CardReader::CardReader() {
 | 
					CardReader::CardReader() {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,11 +23,15 @@
 | 
				
			|||||||
#ifndef CARDREADER_H
 | 
					#ifndef CARDREADER_H
 | 
				
			||||||
#define CARDREADER_H
 | 
					#define CARDREADER_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "MarlinConfig.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(SDSUPPORT)
 | 
					#if ENABLED(SDSUPPORT)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define MAX_DIR_DEPTH 10          // Maximum folder depth
 | 
					#define MAX_DIR_DEPTH 10          // Maximum folder depth
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "SdFile.h"
 | 
					#include "SdFile.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "types.h"
 | 
				
			||||||
#include "enum.h"
 | 
					#include "enum.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class CardReader {
 | 
					class CardReader {
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -23,6 +23,8 @@
 | 
				
			|||||||
#ifndef MACROS_H
 | 
					#ifndef MACROS_H
 | 
				
			||||||
#define MACROS_H
 | 
					#define MACROS_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#define NUM_AXIS 4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define FORCE_INLINE __attribute__((always_inline)) inline
 | 
					#define FORCE_INLINE __attribute__((always_inline)) inline
 | 
				
			||||||
 | 
					
 | 
				
			||||||
// Bracket code that shouldn't be interrupted
 | 
					// Bracket code that shouldn't be interrupted
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -58,13 +58,14 @@
 | 
				
			|||||||
 *
 | 
					 *
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Marlin.h"
 | 
					 | 
				
			||||||
#include "planner.h"
 | 
					#include "planner.h"
 | 
				
			||||||
#include "stepper.h"
 | 
					#include "stepper.h"
 | 
				
			||||||
#include "temperature.h"
 | 
					#include "temperature.h"
 | 
				
			||||||
#include "ultralcd.h"
 | 
					#include "ultralcd.h"
 | 
				
			||||||
#include "language.h"
 | 
					#include "language.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "Marlin.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(MESH_BED_LEVELING)
 | 
					#if ENABLED(MESH_BED_LEVELING)
 | 
				
			||||||
  #include "mesh_bed_leveling.h"
 | 
					  #include "mesh_bed_leveling.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -32,7 +32,8 @@
 | 
				
			|||||||
#ifndef PLANNER_H
 | 
					#ifndef PLANNER_H
 | 
				
			||||||
#define PLANNER_H
 | 
					#define PLANNER_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Marlin.h"
 | 
					#include "types.h"
 | 
				
			||||||
 | 
					#include "MarlinConfig.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(AUTO_BED_LEVELING_FEATURE)
 | 
					#if ENABLED(AUTO_BED_LEVELING_FEATURE)
 | 
				
			||||||
  #include "vector_3.h"
 | 
					  #include "vector_3.h"
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -47,6 +47,7 @@
 | 
				
			|||||||
#include "speed_lookuptable.h"
 | 
					#include "speed_lookuptable.h"
 | 
				
			||||||
#include "stepper_indirection.h"
 | 
					#include "stepper_indirection.h"
 | 
				
			||||||
#include "language.h"
 | 
					#include "language.h"
 | 
				
			||||||
 | 
					#include "types.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
class Stepper;
 | 
					class Stepper;
 | 
				
			||||||
extern Stepper stepper;
 | 
					extern Stepper stepper;
 | 
				
			||||||
 
 | 
				
			|||||||
@@ -27,10 +27,11 @@
 | 
				
			|||||||
#ifndef TEMPERATURE_H
 | 
					#ifndef TEMPERATURE_H
 | 
				
			||||||
#define TEMPERATURE_H
 | 
					#define TEMPERATURE_H
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#include "Marlin.h"
 | 
					 | 
				
			||||||
#include "planner.h"
 | 
					#include "planner.h"
 | 
				
			||||||
#include "thermistortables.h"
 | 
					#include "thermistortables.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					#include "MarlinConfig.h"
 | 
				
			||||||
 | 
					
 | 
				
			||||||
#if ENABLED(PID_EXTRUSION_SCALING)
 | 
					#if ENABLED(PID_EXTRUSION_SCALING)
 | 
				
			||||||
  #include "stepper.h"
 | 
					  #include "stepper.h"
 | 
				
			||||||
#endif
 | 
					#endif
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user