Browse Source

Move some includes around to uncover missing deps

pull/1/head
Scott Lahteine 8 years ago
parent
commit
b73203a0b7
  1. 1
      Marlin/Marlin.h
  2. 4
      Marlin/MarlinSerial.cpp
  3. 7
      Marlin/MarlinSerial.h
  4. 1
      Marlin/Marlin_main.cpp
  5. 4
      Marlin/cardreader.cpp
  6. 4
      Marlin/cardreader.h
  7. 2
      Marlin/macros.h
  8. 3
      Marlin/planner.cpp
  9. 3
      Marlin/planner.h
  10. 1
      Marlin/stepper.h
  11. 3
      Marlin/temperature.h

1
Marlin/Marlin.h

@ -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();

4
Marlin/MarlinSerial.cpp

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

7
Marlin/MarlinSerial.h

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

1
Marlin/Marlin_main.cpp

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

4
Marlin/cardreader.cpp

@ -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() {

4
Marlin/cardreader.h

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

2
Marlin/macros.h

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

3
Marlin/planner.cpp

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

3
Marlin/planner.h

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

1
Marlin/stepper.h

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

3
Marlin/temperature.h

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