Skip to content

Commit

Permalink
Merge branch 'release/v1.12.4'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Jan 30, 2019
2 parents 3db5cbe + 2ab429d commit 41fdac5
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions examples/arduino-external-libs/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@

[common]
lib_deps =
SPI
Adafruit 9DOF Library
Ethernet

Expand Down
10 changes: 10 additions & 0 deletions examples/arduino-internal-libs/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -7,27 +7,37 @@
; Please visit documentation for the other options and examples
; http://docs.platformio.org/page/projectconf.html

[common]
lib_deps =
SPI
Ethernet

[env:uno]
platform = atmelavr
framework = arduino
board = uno
lib_deps = ${common.lib_deps}

[env:megaatmega2560]
platform = atmelavr
framework = arduino
board = megaatmega2560
lib_deps = ${common.lib_deps}

[env:nanoatmega328]
platform = atmelavr
framework = arduino
board = nanoatmega328
lib_deps = ${common.lib_deps}

[env:leonardo]
platform = atmelavr
framework = arduino
board = leonardo
lib_deps = ${common.lib_deps}

[env:ethernet]
platform = atmelavr
framework = arduino
board = ethernet
lib_deps = ${common.lib_deps}

0 comments on commit 41fdac5

Please sign in to comment.