Browse Source

Add an env to get the Include Tree

Scott Lahteine 6 years ago
parent
commit
23cffb2c21
2 changed files with 13 additions and 0 deletions
  1. 1
    0
      buildroot/share/git/mftest
  2. 12
    0
      platformio.ini

+ 1
- 0
buildroot/share/git/mftest View File

19
 
19
 
20
 # Allow shorthand for test name
20
 # Allow shorthand for test name
21
 case $TESTENV in
21
 case $TESTENV in
22
+    tree) platformio run --project-dir . -e include_tree ; exit 1 ;;
22
      due) TESTENV='DUE' ;;
23
      due) TESTENV='DUE' ;;
23
      esp) TESTENV='esp32' ;;
24
      esp) TESTENV='esp32' ;;
24
     lin*) TESTENV='linux_native' ;;
25
     lin*) TESTENV='linux_native' ;;

+ 12
- 0
platformio.ini View File

595
 lib_ignore    = U8glib-HAL
595
 lib_ignore    = U8glib-HAL
596
 src_filter    = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
596
 src_filter    = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
597
 debug_tool    = jlink
597
 debug_tool    = jlink
598
+
599
+#
600
+# Just print the dependency tree
601
+#
602
+[env:include_tree]
603
+platform    = atmelavr
604
+framework   = arduino
605
+board       = megaatmega2560
606
+build_flags = -c -H -std=gnu++11 -Wall -Os
607
+lib_deps    = ${common.lib_deps}
608
+  TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
609
+src_filter  = +<src/Marlin.cpp>

Loading…
Cancel
Save