ソースを参照

Add an env to get the Include Tree

Scott Lahteine 4年前
コミット
23cffb2c21
2個のファイルの変更13行の追加0行の削除
  1. 1
    0
      buildroot/share/git/mftest
  2. 12
    0
      platformio.ini

+ 1
- 0
buildroot/share/git/mftest ファイルの表示

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

+ 12
- 0
platformio.ini ファイルの表示

@@ -595,3 +595,15 @@ lib_deps      = ${common.lib_deps}
595 595
 lib_ignore    = U8glib-HAL
596 596
 src_filter    = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
597 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>

読み込み中…
キャンセル
保存