From 550f1025f0fa79ed487deee250d72f77b8078ed0 Mon Sep 17 00:00:00 2001 From: Scott Lahteine Date: Sun, 19 Nov 2017 13:57:07 -0600 Subject: [PATCH] Try using everywhere --- Marlin/src/HAL/HAL_AVR/HAL_AVR.h | 2 +- Marlin/src/HAL/HAL_DUE/HAL_Due.h | 2 +- Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp | 2 +- Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h | 2 +- Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h | 2 +- Marlin/src/feature/leds/blinkm.h | 2 +- Marlin/src/feature/leds/pca9632.h | 2 +- 7 files changed, 7 insertions(+), 7 deletions(-) diff --git a/Marlin/src/HAL/HAL_AVR/HAL_AVR.h b/Marlin/src/HAL/HAL_AVR/HAL_AVR.h index 2a7ef0674f..6c6b9be0b5 100644 --- a/Marlin/src/HAL/HAL_AVR/HAL_AVR.h +++ b/Marlin/src/HAL/HAL_AVR/HAL_AVR.h @@ -35,7 +35,7 @@ #include -#include "Arduino.h" +#include #include #include diff --git a/Marlin/src/HAL/HAL_DUE/HAL_Due.h b/Marlin/src/HAL/HAL_DUE/HAL_Due.h index 3c7993b990..c8f416067e 100644 --- a/Marlin/src/HAL/HAL_DUE/HAL_Due.h +++ b/Marlin/src/HAL/HAL_DUE/HAL_Due.h @@ -31,7 +31,7 @@ #include -#include "Arduino.h" +#include #include "fastio_Due.h" #include "watchdog_Due.h" diff --git a/Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp b/Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp index 8c47092b2a..1c73db03c1 100644 --- a/Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp +++ b/Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp @@ -19,7 +19,7 @@ #ifdef TARGET_LPC1768 #include "../../inc/MarlinConfig.h" -#include "arduino.h" +#include "include/arduino.h" #include "pinmapping.h" //#include "HAL_timers.h" #include "fastio.h" diff --git a/Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h b/Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h index 3d61842271..354b5eff0e 100644 --- a/Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h +++ b/Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h @@ -40,7 +40,7 @@ #include -#include "Arduino.h" +#include // -------------------------------------------------------------------------- // Undefine DEBUG_ settings diff --git a/Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h b/Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h index 0ac8244e04..379b363dda 100644 --- a/Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h +++ b/Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h @@ -30,7 +30,7 @@ // Includes // -------------------------------------------------------------------------- -#include "Arduino.h" +#include #include "fastio_Teensy.h" #include "watchdog_Teensy.h" diff --git a/Marlin/src/feature/leds/blinkm.h b/Marlin/src/feature/leds/blinkm.h index 5c7b1307a5..d4b5b8d2e7 100644 --- a/Marlin/src/feature/leds/blinkm.h +++ b/Marlin/src/feature/leds/blinkm.h @@ -28,7 +28,7 @@ #ifndef __BLINKM_H__ #define __BLINKM_H__ -#include "Arduino.h" +#include #include void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b); diff --git a/Marlin/src/feature/leds/pca9632.h b/Marlin/src/feature/leds/pca9632.h index b3ddfcd6ea..0a8b48d3c1 100644 --- a/Marlin/src/feature/leds/pca9632.h +++ b/Marlin/src/feature/leds/pca9632.h @@ -28,7 +28,7 @@ #ifndef __PCA9632_H__ #define __PCA9632_H__ -#include "Arduino.h" +#include #include void pca9632_set_led_color(const byte r, const byte g, const byte b);