Move some includes around to uncover missing deps

master
Scott Lahteine 8 years ago
parent cebeb48005
commit b73203a0b7

@ -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
*/
#define NUM_AXIS 4
#define _AXIS(AXIS) AXIS ##_AXIS
void enable_all_steppers();

@ -29,10 +29,12 @@
Modified 14 February 2016 by Andreas Hardtung (added tx buffer)
*/
#include "Marlin.h"
#include "MarlinSerial.h"
#include "stepper.h"
#include "Marlin.h"
#ifndef USBCON
// this next line disables the entire HardwareSerial.cpp,
// this is so I can support Attiny series and any other chip without a UART

@ -31,13 +31,8 @@
#ifndef 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
#define SERIAL_PORT 0

@ -61,6 +61,7 @@
#include "math.h"
#include "nozzle.h"
#include "duration_t.h"
#include "types.h"
#if ENABLED(USE_WATCHDOG)
#include "watchdog.h"

@ -20,13 +20,15 @@
*
*/
#include "Marlin.h"
#include "cardreader.h"
#include "ultralcd.h"
#include "stepper.h"
#include "temperature.h"
#include "language.h"
#include "Marlin.h"
#if ENABLED(SDSUPPORT)
CardReader::CardReader() {

@ -23,11 +23,15 @@
#ifndef CARDREADER_H
#define CARDREADER_H
#include "MarlinConfig.h"
#if ENABLED(SDSUPPORT)
#define MAX_DIR_DEPTH 10 // Maximum folder depth
#include "SdFile.h"
#include "types.h"
#include "enum.h"
class CardReader {

@ -23,6 +23,8 @@
#ifndef MACROS_H
#define MACROS_H
#define NUM_AXIS 4
#define FORCE_INLINE __attribute__((always_inline)) inline
// Bracket code that shouldn't be interrupted

@ -58,13 +58,14 @@
*
*/
#include "Marlin.h"
#include "planner.h"
#include "stepper.h"
#include "temperature.h"
#include "ultralcd.h"
#include "language.h"
#include "Marlin.h"
#if ENABLED(MESH_BED_LEVELING)
#include "mesh_bed_leveling.h"
#endif

@ -32,7 +32,8 @@
#ifndef PLANNER_H
#define PLANNER_H
#include "Marlin.h"
#include "types.h"
#include "MarlinConfig.h"
#if ENABLED(AUTO_BED_LEVELING_FEATURE)
#include "vector_3.h"

@ -47,6 +47,7 @@
#include "speed_lookuptable.h"
#include "stepper_indirection.h"
#include "language.h"
#include "types.h"
class Stepper;
extern Stepper stepper;

@ -27,10 +27,11 @@
#ifndef TEMPERATURE_H
#define TEMPERATURE_H
#include "Marlin.h"
#include "planner.h"
#include "thermistortables.h"
#include "MarlinConfig.h"
#if ENABLED(PID_EXTRUSION_SCALING)
#include "stepper.h"
#endif

Loading…
Cancel
Save