Browse Source

Try using <Arduino.h> everywhere

pull/1/head
Scott Lahteine 7 years ago
parent
commit
550f1025f0
  1. 2
      Marlin/src/HAL/HAL_AVR/HAL_AVR.h
  2. 2
      Marlin/src/HAL/HAL_DUE/HAL_Due.h
  3. 2
      Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp
  4. 2
      Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h
  5. 2
      Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h
  6. 2
      Marlin/src/feature/leds/blinkm.h
  7. 2
      Marlin/src/feature/leds/pca9632.h

2
Marlin/src/HAL/HAL_AVR/HAL_AVR.h

@ -35,7 +35,7 @@
#include <stdint.h>
#include "Arduino.h"
#include <Arduino.h>
#include <util/delay.h>
#include <avr/eeprom.h>

2
Marlin/src/HAL/HAL_DUE/HAL_Due.h

@ -31,7 +31,7 @@
#include <stdint.h>
#include "Arduino.h"
#include <Arduino.h>
#include "fastio_Due.h"
#include "watchdog_Due.h"

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

2
Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h

@ -40,7 +40,7 @@
#include <stdint.h>
#include "Arduino.h"
#include <Arduino.h>
// --------------------------------------------------------------------------
// Undefine DEBUG_ settings

2
Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h

@ -30,7 +30,7 @@
// Includes
// --------------------------------------------------------------------------
#include "Arduino.h"
#include <Arduino.h>
#include "fastio_Teensy.h"
#include "watchdog_Teensy.h"

2
Marlin/src/feature/leds/blinkm.h

@ -28,7 +28,7 @@
#ifndef __BLINKM_H__
#define __BLINKM_H__
#include "Arduino.h"
#include <Arduino.h>
#include <Wire.h>
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);

2
Marlin/src/feature/leds/pca9632.h

@ -28,7 +28,7 @@
#ifndef __PCA9632_H__
#define __PCA9632_H__
#include "Arduino.h"
#include <Arduino.h>
#include <Wire.h>
void pca9632_set_led_color(const byte r, const byte g, const byte b);

Loading…
Cancel
Save