Browse Source

Turn PlatformIO LDF off for LPC176x builds (#12334)

Chris Pepper 6 years ago
parent
commit
32880ff42a
1 changed files with 8 additions and 6 deletions
  1. 8
    6
      platformio.ini

+ 8
- 6
platformio.ini View File

@@ -158,13 +158,14 @@ build_flags       = -DTARGET_LPC1768 -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC176
158 158
 # debug options for backtrace
159 159
 #  -funwind-tables
160 160
 #  -mpoke-function-name
161
-lib_ignore        = Adafruit NeoPixel
162
-lib_ldf_mode      = chain+
161
+lib_ldf_mode      = off
163 162
 lib_compat_mode   = strict
164 163
 extra_scripts     = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
165 164
 src_filter        = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
166 165
 monitor_speed     = 250000
167
-lib_deps          = https://github.com/MarlinFirmware/U8glib-HAL/archive/dev.zip
166
+lib_deps          = Servo
167
+  LiquidCrystal
168
+  https://github.com/MarlinFirmware/U8glib-HAL/archive/dev.zip
168 169
   https://github.com/teemuatlut/TMCStepper.git
169 170
 
170 171
 [env:LPC1769]
@@ -175,13 +176,14 @@ build_flags       = -DTARGET_LPC1768 -DU8G_HAL_LINKS -IMarlin/src/HAL/HAL_LPC176
175 176
 # debug options for backtrace
176 177
 #  -funwind-tables
177 178
 #  -mpoke-function-name
178
-lib_ignore        = Adafruit NeoPixel
179
-lib_ldf_mode      = chain+
179
+lib_ldf_mode      = off
180 180
 lib_compat_mode   = strict
181 181
 extra_scripts     = Marlin/src/HAL/HAL_LPC1768/upload_extra_script.py
182 182
 src_filter        = ${common.default_src_filter} +<src/HAL/HAL_LPC1768>
183 183
 monitor_speed     = 250000
184
-lib_deps          = https://github.com/MarlinFirmware/U8glib-HAL/archive/dev.zip
184
+lib_deps          = Servo
185
+  LiquidCrystal
186
+  https://github.com/MarlinFirmware/U8glib-HAL/archive/dev.zip
185 187
   https://github.com/teemuatlut/TMCStepper.git
186 188
 
187 189
 #

Loading…
Cancel
Save