Fix up 'system' includes

This commit is contained in:
Scott Lahteine 2020-04-01 23:50:08 -05:00
parent 514afddeb4
commit 62e8c2dd87
5 changed files with 6 additions and 6 deletions

View file

@ -27,7 +27,7 @@
#if ENABLED(EEPROM_SETTINGS) && DISABLED(FLASH_EEPROM_EMULATION)
#include "../shared/eeprom_api.h"
#include "EEPROM.h"
#include <EEPROM.h>
#define EEPROM_SIZE 4096

View file

@ -29,7 +29,7 @@
#pragma once
#include "Adafruit_SPIFlashBase.h"
#include <Adafruit_SPIFlashBase.h>
// This class extends Adafruit_SPIFlashBase by adding caching support.
//

View file

@ -24,8 +24,8 @@
#if BOTH(DIGIPOT_I2C, DIGIPOT_MCP4018)
#include "Stream.h"
#include "utility/twi.h"
#include <Stream.h>
#include <utility/twi.h>
#include <SlowSoftI2CMaster.h> //https://github.com/stawel/SlowSoftI2CMaster
// Settings for the I2C based DIGIPOT (MCP4018) based on WT150

View file

@ -24,7 +24,7 @@
#if ENABLED(DIGIPOT_I2C) && DISABLED(DIGIPOT_MCP4018)
#include "Stream.h"
#include <Stream.h>
#include <Wire.h>
#if MB(MKS_SBASE)

View file

@ -37,7 +37,7 @@
#endif
#if ENABLED(MAX6675_IS_MAX31865)
#include "Adafruit_MAX31865.h"
#include <Adafruit_MAX31865.h>
#ifndef MAX31865_CS_PIN
#define MAX31865_CS_PIN MAX6675_SS_PIN // HW:49 SW:65 for example
#endif