Browse Source
Merge pull request #10096 from Bob-the-Kuhn/DUE-platform.ini
[2.0.x] platformio.ini - add DUE native port support
pull/1/head
Bob-the-Kuhn
7 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
9 additions and
1 deletions
-
platformio.ini
|
|
@ -77,7 +77,15 @@ src_filter = ${common.default_src_filter} |
|
|
|
# - RAMPS4DUE |
|
|
|
# - RADDS |
|
|
|
# |
|
|
|
[env:DUE] |
|
|
|
[env:DUE native port] |
|
|
|
platform = atmelsam |
|
|
|
framework = arduino |
|
|
|
board = dueUSB |
|
|
|
build_flags = ${common.build_flags} |
|
|
|
lib_deps = ${common.lib_deps} |
|
|
|
lib_ignore = c1921b4 |
|
|
|
src_filter = ${common.default_src_filter} |
|
|
|
[env:DUE programming port] |
|
|
|
platform = atmelsam |
|
|
|
framework = arduino |
|
|
|
board = due |
|
|
|