Browse Source

Fix PrintrBoard build (ignore TMC libraries) (#16346)

(In future try to get Teensy processors better supported by `TMCStepper`.)
Jason Smith 4 years ago
parent
commit
a7b0b390cd
1 changed files with 2 additions and 1 deletions
  1. 2
    1
      platformio.ini

+ 2
- 1
platformio.ini View File

@@ -163,6 +163,7 @@ platform      = teensy
163 163
 board         = at90usb1286
164 164
 lib_deps      = ${common.lib_deps}
165 165
   TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
166
+lib_ignore    = TMCStepper
166 167
 src_filter    = ${common.default_src_filter} +<src/HAL/HAL_AVR>
167 168
 monitor_speed = 250000
168 169
 
@@ -176,7 +177,7 @@ monitor_speed = 250000
176 177
 platform      = teensy
177 178
 board         = at90usb1286
178 179
 lib_deps      = ${common.lib_deps}
179
-  TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
180
+lib_ignore    = TMCStepper
180 181
 src_filter    = ${common.default_src_filter} +<src/HAL/HAL_AVR>
181 182
 monitor_speed = 250000
182 183
 

Loading…
Cancel
Save