Ver código fonte

Try using <Arduino.h> everywhere

Scott Lahteine 7 anos atrás
pai
commit
550f1025f0

+ 1
- 1
Marlin/src/HAL/HAL_AVR/HAL_AVR.h Ver arquivo

@@ -35,7 +35,7 @@
35 35
 
36 36
 #include <stdint.h>
37 37
 
38
-#include "Arduino.h"
38
+#include <Arduino.h>
39 39
 
40 40
 #include <util/delay.h>
41 41
 #include <avr/eeprom.h>

+ 1
- 1
Marlin/src/HAL/HAL_DUE/HAL_Due.h Ver arquivo

@@ -31,7 +31,7 @@
31 31
 
32 32
 #include <stdint.h>
33 33
 
34
-#include "Arduino.h"
34
+#include <Arduino.h>
35 35
 
36 36
 #include "fastio_Due.h"
37 37
 #include "watchdog_Due.h"

+ 1
- 1
Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp Ver arquivo

@@ -19,7 +19,7 @@
19 19
 #ifdef TARGET_LPC1768
20 20
 
21 21
 #include "../../inc/MarlinConfig.h"
22
-#include "arduino.h"
22
+#include "include/arduino.h"
23 23
 #include "pinmapping.h"
24 24
 //#include "HAL_timers.h"
25 25
 #include "fastio.h"

+ 1
- 1
Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h Ver arquivo

@@ -40,7 +40,7 @@
40 40
 
41 41
 #include <stdint.h>
42 42
 
43
-#include "Arduino.h"
43
+#include <Arduino.h>
44 44
 
45 45
 // --------------------------------------------------------------------------
46 46
 // Undefine DEBUG_ settings

+ 1
- 1
Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h Ver arquivo

@@ -30,7 +30,7 @@
30 30
 // Includes
31 31
 // --------------------------------------------------------------------------
32 32
 
33
-#include "Arduino.h"
33
+#include <Arduino.h>
34 34
 
35 35
 #include "fastio_Teensy.h"
36 36
 #include "watchdog_Teensy.h"

+ 1
- 1
Marlin/src/feature/leds/blinkm.h Ver arquivo

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

+ 1
- 1
Marlin/src/feature/leds/pca9632.h Ver arquivo

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

Carregando…
Cancelar
Salvar