Browse Source

Try using <Arduino.h> everywhere

Scott Lahteine 7 years ago
parent
commit
550f1025f0

+ 1
- 1
Marlin/src/HAL/HAL_AVR/HAL_AVR.h View File

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

+ 1
- 1
Marlin/src/HAL/HAL_DUE/HAL_Due.h View File

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

+ 1
- 1
Marlin/src/HAL/HAL_LPC1768/WInterrupts.cpp View File

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

+ 1
- 1
Marlin/src/HAL/HAL_STM32F1/HAL_Stm32f1.h View File

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

+ 1
- 1
Marlin/src/HAL/HAL_TEENSY35_36/HAL_Teensy.h View File

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

+ 1
- 1
Marlin/src/feature/leds/blinkm.h View File

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

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

Loading…
Cancel
Save