浏览代码

Fix up 'system' includes

Scott Lahteine 5 年前
父节点
当前提交
62e8c2dd87

+ 1
- 1
Marlin/src/HAL/ESP32/eeprom_impl.cpp 查看文件

27
 #if ENABLED(EEPROM_SETTINGS) && DISABLED(FLASH_EEPROM_EMULATION)
27
 #if ENABLED(EEPROM_SETTINGS) && DISABLED(FLASH_EEPROM_EMULATION)
28
 
28
 
29
 #include "../shared/eeprom_api.h"
29
 #include "../shared/eeprom_api.h"
30
-#include "EEPROM.h"
30
+#include <EEPROM.h>
31
 
31
 
32
 #define EEPROM_SIZE 4096
32
 #define EEPROM_SIZE 4096
33
 
33
 

+ 1
- 1
Marlin/src/HAL/SAMD51/QSPIFlash.h 查看文件

29
 
29
 
30
 #pragma once
30
 #pragma once
31
 
31
 
32
-#include "Adafruit_SPIFlashBase.h"
32
+#include <Adafruit_SPIFlashBase.h>
33
 
33
 
34
 // This class extends Adafruit_SPIFlashBase by adding caching support.
34
 // This class extends Adafruit_SPIFlashBase by adding caching support.
35
 //
35
 //

+ 2
- 2
Marlin/src/feature/digipot/digipot_mcp4018.cpp 查看文件

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

+ 1
- 1
Marlin/src/feature/digipot/digipot_mcp4451.cpp 查看文件

24
 
24
 
25
 #if ENABLED(DIGIPOT_I2C) && DISABLED(DIGIPOT_MCP4018)
25
 #if ENABLED(DIGIPOT_I2C) && DISABLED(DIGIPOT_MCP4018)
26
 
26
 
27
-#include "Stream.h"
27
+#include <Stream.h>
28
 #include <Wire.h>
28
 #include <Wire.h>
29
 
29
 
30
 #if MB(MKS_SBASE)
30
 #if MB(MKS_SBASE)

+ 1
- 1
Marlin/src/module/temperature.cpp 查看文件

37
 #endif
37
 #endif
38
 
38
 
39
 #if ENABLED(MAX6675_IS_MAX31865)
39
 #if ENABLED(MAX6675_IS_MAX31865)
40
-  #include "Adafruit_MAX31865.h"
40
+  #include <Adafruit_MAX31865.h>
41
   #ifndef MAX31865_CS_PIN
41
   #ifndef MAX31865_CS_PIN
42
     #define MAX31865_CS_PIN     MAX6675_SS_PIN  // HW:49   SW:65    for example
42
     #define MAX31865_CS_PIN     MAX6675_SS_PIN  // HW:49   SW:65    for example
43
   #endif
43
   #endif

正在加载...
取消
保存