Fix build time errors

parent 9b9bb5f7
...@@ -238,7 +238,7 @@ ...@@ -238,7 +238,7 @@
/***************************************************************************************** /*****************************************************************************************
************************************** MBL or ABL *************************************** ************************************** MBL or ABL ***************************************
/***************************************************************************************** *****************************************************************************************
* * * *
* Manual Bed Leveling (MBL) or Auto Bed Leveling (ABL) settings * * Manual Bed Leveling (MBL) or Auto Bed Leveling (ABL) settings *
* Set the rectangle in which to probe in MBL or ABL. * * Set the rectangle in which to probe in MBL or ABL. *
...@@ -445,4 +445,4 @@ ...@@ -445,4 +445,4 @@
//#define HOTEND_OFFSET_Z {0.0, 0.0, 0.0, 0.0} // (in mm) for each hotend, offset of the hotend on the Z axis //#define HOTEND_OFFSET_Z {0.0, 0.0, 0.0, 0.0} // (in mm) for each hotend, offset of the hotend on the Z axis
/*****************************************************************************************/ /*****************************************************************************************/
#endif #endif
\ No newline at end of file
...@@ -193,9 +193,8 @@ ...@@ -193,9 +193,8 @@
* T0-T3 - Select a tool by index (usually an extruder) [ F<mm/min> ] * T0-T3 - Select a tool by index (usually an extruder) [ F<mm/min> ]
* *
*/ */
#include "base.h"
#include "base.h"
#if ENABLED(DIGIPOT_I2C) || ENABLED(BLINKM) #if ENABLED(DIGIPOT_I2C) || ENABLED(BLINKM)
#include <Wire.h> #include <Wire.h>
#endif #endif
......
...@@ -17,13 +17,11 @@ ...@@ -17,13 +17,11 @@
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/ */
#include "laser.h" #include "../../base.h"
#include "Configuration.h"
#include "ConfigurationStore.h"
#include "pins.h"
#include <avr/interrupt.h> #include <avr/interrupt.h>
#include <Arduino.h> #include <Arduino.h>
#include "Marlin.h"
#if ENABLED(LASER)
laser_t laser; laser_t laser;
...@@ -192,3 +190,5 @@ void laser_wait_for_peripherals() { ...@@ -192,3 +190,5 @@ void laser_wait_for_peripherals() {
} }
} }
#endif // LASER_PERIPHERALS #endif // LASER_PERIPHERALS
#endif // LASER
...@@ -21,7 +21,7 @@ ...@@ -21,7 +21,7 @@
#define LASER_H #define LASER_H
#include <inttypes.h> #include <inttypes.h>
#include "Configuration.h" #include "../../base.h"
// split into planned and status // split into planned and status
typedef struct { typedef struct {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment