Skip to content

Commit

Permalink
Add an env to get the Include Tree
Browse files Browse the repository at this point in the history
  • Loading branch information
thinkyhead committed Aug 29, 2019
1 parent 9223261 commit 23cffb2
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 0 deletions.
1 change: 1 addition & 0 deletions buildroot/share/git/mftest
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ TESTENV=${1:-'-'}

# Allow shorthand for test name
case $TESTENV in
tree) platformio run --project-dir . -e include_tree ; exit 1 ;;
due) TESTENV='DUE' ;;
esp) TESTENV='esp32' ;;
lin*) TESTENV='linux_native' ;;
Expand Down
12 changes: 12 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -595,3 +595,15 @@ lib_deps = ${common.lib_deps}
lib_ignore = U8glib-HAL
src_filter = ${common.default_src_filter} +<src/HAL/HAL_SAMD51>
debug_tool = jlink

#
# Just print the dependency tree
#
[env:include_tree]
platform = atmelavr
framework = arduino
board = megaatmega2560
build_flags = -c -H -std=gnu++11 -Wall -Os
lib_deps = ${common.lib_deps}
TMC26XStepper=https://github.com/trinamic/TMC26XStepper/archive/master.zip
src_filter = +<src/Marlin.cpp>

0 comments on commit 23cffb2

Please sign in to comment.