mirror of
https://github.com/MarlinFirmware/Marlin.git
synced 2024-11-27 22:08:02 +00:00
Try using <Arduino.h> everywhere
This commit is contained in:
parent
c0000a0cdc
commit
550f1025f0
@ -35,7 +35,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
|
|
||||||
#include <util/delay.h>
|
#include <util/delay.h>
|
||||||
#include <avr/eeprom.h>
|
#include <avr/eeprom.h>
|
||||||
|
@ -31,7 +31,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
|
|
||||||
#include "fastio_Due.h"
|
#include "fastio_Due.h"
|
||||||
#include "watchdog_Due.h"
|
#include "watchdog_Due.h"
|
||||||
|
@ -19,7 +19,7 @@
|
|||||||
#ifdef TARGET_LPC1768
|
#ifdef TARGET_LPC1768
|
||||||
|
|
||||||
#include "../../inc/MarlinConfig.h"
|
#include "../../inc/MarlinConfig.h"
|
||||||
#include "arduino.h"
|
#include "include/arduino.h"
|
||||||
#include "pinmapping.h"
|
#include "pinmapping.h"
|
||||||
//#include "HAL_timers.h"
|
//#include "HAL_timers.h"
|
||||||
#include "fastio.h"
|
#include "fastio.h"
|
||||||
|
@ -40,7 +40,7 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
// Undefine DEBUG_ settings
|
// Undefine DEBUG_ settings
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
// Includes
|
// Includes
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
|
|
||||||
#include "fastio_Teensy.h"
|
#include "fastio_Teensy.h"
|
||||||
#include "watchdog_Teensy.h"
|
#include "watchdog_Teensy.h"
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#ifndef __BLINKM_H__
|
#ifndef __BLINKM_H__
|
||||||
#define __BLINKM_H__
|
#define __BLINKM_H__
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);
|
void blinkm_set_led_color(const uint8_t r, const uint8_t g, const uint8_t b);
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#ifndef __PCA9632_H__
|
#ifndef __PCA9632_H__
|
||||||
#define __PCA9632_H__
|
#define __PCA9632_H__
|
||||||
|
|
||||||
#include "Arduino.h"
|
#include <Arduino.h>
|
||||||
#include <Wire.h>
|
#include <Wire.h>
|
||||||
|
|
||||||
void pca9632_set_led_color(const byte r, const byte g, const byte b);
|
void pca9632_set_led_color(const byte r, const byte g, const byte b);
|
||||||
|
Loading…
Reference in New Issue
Block a user