Browse Source

Patch platformio.ini to fix build error in DevIoT

For compatibility with DevIoT, until that can be solved.
pull/1/head
Scott Lahteine 7 years ago
committed by Scott Lahteine
parent
commit
47cae2929f
  1. 1
      .gitignore
  2. 4
      platformio.ini

1
.gitignore

@ -119,6 +119,7 @@ tags
.pioenvs .pioenvs
.piolib .piolib
.piolibdeps .piolibdeps
lib/readme.txt
#Visual Studio #Visual Studio
*.sln *.sln

4
Marlin/platformio.ini → platformio.ini

@ -24,7 +24,7 @@ lib_deps = U8glib@1.19.1
[env:mega2560] [env:mega2560]
platform = atmelavr platform = atmelavr
framework = arduino framework = arduino
board = megaatmega2560 board = mega2560
build_flags = -I $BUILDSRC_DIR build_flags = -I $BUILDSRC_DIR
board_f_cpu = 16000000L board_f_cpu = 16000000L
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
@ -32,7 +32,7 @@ lib_deps = ${common.lib_deps}
[env:mega1280] [env:mega1280]
platform = atmelavr platform = atmelavr
framework = arduino framework = arduino
board = megaatmega1280 board = mega1280
build_flags = -I $BUILDSRC_DIR build_flags = -I $BUILDSRC_DIR
board_f_cpu = 16000000L board_f_cpu = 16000000L
lib_deps = ${common.lib_deps} lib_deps = ${common.lib_deps}
Loading…
Cancel
Save