Update include headers

This commit is contained in:
fvanroie 2021-10-29 16:31:44 +02:00
parent 17b71dbe24
commit b9e0a2fb30
16 changed files with 17 additions and 14 deletions

View File

@ -1,5 +1,5 @@
#include "Arduino.h"
#include <Arduino.h>
#include "stm32f4xx.h"
//#include "stm32f429i_discovery.h"

View File

@ -169,7 +169,7 @@
#include "Windows.h"
#elif defined(POSIX)
#else
#include "Arduino.h"
#include <Arduino.h>
#endif
#if HASP_USE_SPIFFS > 0

View File

@ -17,7 +17,7 @@ Licensed under the MIT License <http://opensource.org/licenses/MIT>.
#include <inttypes.h>
#include <stdarg.h>
#if defined(ARDUINO) && ARDUINO >= 100
#include "Arduino.h"
#include <Arduino.h>
#else
#include "WProgram.h"
#endif

View File

@ -4,7 +4,7 @@
// Code under MIT License
// Code under MIT License
#include "Arduino.h"
#include <Arduino.h>
#include "pins_arduino.h"
#ifdef __AVR

View File

@ -23,7 +23,7 @@
#ifndef _XPT2046_Touchscreen_h_
#define _XPT2046_Touchscreen_h_
#include "Arduino.h"
#include <Arduino.h>
#include <SPI.h>
#if ARDUINO < 10600

View File

@ -23,7 +23,7 @@
* out of or in connection with the Software or the use or other dealings in the
* Software.
*/
#include "Arduino.h" // for PROGMEM
#include <Arduino.h> // for PROGMEM
#include <assert.h>
#include <limits.h>

View File

@ -3,7 +3,7 @@
#if defined(ESP32)
#include "Arduino.h"
#include <Arduino.h>
#include <Esp.h>
#include <WiFi.h>
#include "esp_system.h"

View File

@ -5,7 +5,7 @@
#if defined(LANBONL8)
#include "Arduino.h"
#include <Arduino.h>
#include "dev/esp32/esp32.h"
#include "driver/pcnt.h" // Pulse count driver

View File

@ -3,7 +3,7 @@
#if defined(ESP8266)
#include "Arduino.h"
#include <Arduino.h>
#include <Esp.h>
#include <ESP8266WiFi.h>

View File

@ -3,7 +3,7 @@
#if defined(STM32F4xx)
#include "Arduino.h"
#include <Arduino.h>
#include "stm32f4.h"

View File

@ -3,7 +3,7 @@
#if defined(STM32F7xx)
#include "Arduino.h"
#include <Arduino.h>
#include "stm32f7.h"

View File

@ -5,7 +5,7 @@
#define HASP_H
#ifdef ARDUINO
#include "Arduino.h"
#include <Arduino.h>
#endif
#include "hasplib.h"

View File

@ -2,6 +2,8 @@
For full license information read the LICENSE file in the project folder */
#include "hasplib.h"
#include "hasp_filesystem.h"
#include <fstream>
#if defined(ARDUINO)

View File

@ -3,7 +3,7 @@
#ifdef ARDUINO
#include "pgmspace.h"
#include "Arduino.h"
#include <Arduino.h>
#endif
#include "hasplib.h"

View File

@ -6,7 +6,7 @@
#if HASP_USE_EEPROM > 0
#ifdef ARDUINO
#include "Arduino.h"
#include <Arduino.h>
#endif
#include "EEPROM.h"

View File

@ -21,6 +21,7 @@
#ifndef ESP_ARDUINO_VERSION_VAL
#define ESP_ARDUINO_VERSION_VAL(major, minor, patch) ((major << 16) | (minor << 8) | (patch))
#endif
#include <WiFi.h>
#elif defined(ARDUINO_ARCH_ESP8266)
#include <ESP8266WiFi.h>