Fix missed includes from HAL macro patch (#10416)

This commit is contained in:
Chris Pepper 2018-04-16 00:27:34 +01:00 committed by Scott Lahteine
parent 74f4eb8312
commit c9aed73987
4 changed files with 3 additions and 3 deletions

View File

@ -33,7 +33,7 @@
// Includes // Includes
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------
#include "HAL.h" #include HAL_PATH(., HAL.h)
#include <Wire.h> #include <Wire.h>
// -------------------------------------------------------------------------- // --------------------------------------------------------------------------

View File

@ -29,7 +29,7 @@
#if ENABLED(SPI_EEPROM) #if ENABLED(SPI_EEPROM)
#include "HAL.h" #include HAL_PATH(., HAL.h)
#define CMD_WREN 6 // WREN #define CMD_WREN 6 // WREN
#define CMD_READ 2 // WRITE #define CMD_READ 2 // WRITE

View File

@ -25,7 +25,6 @@
#include "MarlinConfigPre.h" #include "MarlinConfigPre.h"
#include "../HAL/platforms.h"
#include HAL_PATH(../HAL, HAL.h) #include HAL_PATH(../HAL, HAL.h)
#include "../pins/pins.h" #include "../pins/pins.h"

View File

@ -23,6 +23,7 @@
#ifndef _MARLIN_CONFIGPRE_H_ #ifndef _MARLIN_CONFIGPRE_H_
#define _MARLIN_CONFIGPRE_H_ #define _MARLIN_CONFIGPRE_H_
#include "../HAL/platforms.h"
#include "../core/boards.h" #include "../core/boards.h"
#include "../core/macros.h" #include "../core/macros.h"
#include "Version.h" #include "Version.h"