Browse Source

Specify supported library versions

Scott Lahteine 5 years ago
parent
commit
c1b2379204
1 changed files with 22 additions and 22 deletions
  1. 22
    22
      platformio.ini

+ 22
- 22
platformio.ini View File

@@ -25,16 +25,16 @@ default_src_filter = +<src/*> -<src/config> -<src/HAL> +<src/HAL/shared>
25 25
 extra_scripts = pre:buildroot/share/PlatformIO/scripts/common-cxxflags.py
26 26
 build_flags = -fmax-errors=5 -g -D__MARLIN_FIRMWARE__ -fmerge-all-constants
27 27
 lib_deps =
28
-  LiquidCrystal
29
-  TMCStepper@>=0.6.2,<1.0.0
30
-  Adafruit NeoPixel
31
-  U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
32
-  Adafruit_MAX31865=https://github.com/adafruit/Adafruit_MAX31865/archive/master.zip
33
-  LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
34
-  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.8.0.zip
28
+  LiquidCrystal@1.5.0
29
+  TMCStepper@~0.7.1
30
+  Adafruit NeoPixel@1.5.0
31
+  U8glib-HAL@0.4.1
32
+  Adafruit MAX31865 library@~1.1.0
33
+  LiquidTWI2@1.2.7
34
+  Arduino-L6470@0.8.0
35
+  SlowSoftI2CMaster
35 36
   SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
36 37
   SailfishRGB_LED=https://github.com/mikeshub/SailfishRGB_LED/archive/master.zip
37
-  SlowSoftI2CMaster=https://github.com/mikeshub/SlowSoftI2CMaster/archive/master.zip
38 38
 
39 39
 # Globally defined properties
40 40
 # inherited by all environments
@@ -221,10 +221,10 @@ lib_compat_mode   = strict
221 221
 extra_scripts     = Marlin/src/HAL/LPC1768/upload_extra_script.py
222 222
 src_filter        = ${common.default_src_filter} +<src/HAL/LPC1768>
223 223
 lib_deps          = Servo
224
-  LiquidCrystal
225
-  U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
226
-  TMCStepper@>=0.6.1,<1.0.0
227
-  Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
224
+  LiquidCrystal@1.5.0
225
+  U8glib-HAL@0.4.1
226
+  TMCStepper@~0.7.1
227
+  Adafruit NeoPixel@1.5.0
228 228
   SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
229 229
 
230 230
 [env:LPC1769]
@@ -239,10 +239,10 @@ lib_compat_mode   = strict
239 239
 extra_scripts     = Marlin/src/HAL/LPC1768/upload_extra_script.py
240 240
 src_filter        = ${common.default_src_filter} +<src/HAL/LPC1768>
241 241
 lib_deps          = Servo
242
-  LiquidCrystal
243
-  U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
244
-  TMCStepper@>=0.6.1,<1.0.0
245
-  Adafruit NeoPixel=https://github.com/p3p/Adafruit_NeoPixel/archive/release.zip
242
+  LiquidCrystal@1.5.0
243
+  U8glib-HAL@0.4.1
244
+  TMCStepper@~0.7.1
245
+  Adafruit NeoPixel@1.5.0
246 246
   SailfishLCD=https://github.com/mikeshub/SailfishLCD/archive/master.zip
247 247
 
248 248
 #
@@ -697,12 +697,12 @@ build_flags       = ${common.build_flags}
697 697
   -DTARGET_STM32F4 -DSTM32F407IX -DVECT_TAB_OFFSET=0x8000
698 698
   -IMarlin/src/HAL/STM32
699 699
 lib_deps          =
700
-  U8glib-HAL=https://github.com/MarlinFirmware/U8glib-HAL/archive/bugfix.zip
701
-  LiquidCrystal
702
-  TMCStepper@>=0.5.2,<1.0.0
703
-  Adafruit NeoPixel
704
-  LiquidTWI2=https://github.com/lincomatic/LiquidTWI2/archive/master.zip
705
-  Arduino-L6470=https://github.com/ameyer/Arduino-L6470/archive/0.7.0.zip
700
+  U8glib-HAL@0.4.1
701
+  LiquidCrystal@1.5.0
702
+  TMCStepper@~0.7.1
703
+  Adafruit NeoPixel@1.5.0
704
+  LiquidTWI2@1.2.7
705
+  Arduino-L6470@0.8.0
706 706
 lib_ignore        = SoftwareSerial, SoftwareSerialM
707 707
 src_filter        = ${common.default_src_filter} +<src/HAL/STM32>
708 708
 monitor_speed     = 250000

Loading…
Cancel
Save