Browse Source

Patch platformio.ini to fix build error in DevIoT

For compatibility with DevIoT, until that can be solved.
Scott Lahteine 8 years ago
parent
commit
47cae2929f
2 changed files with 3 additions and 2 deletions
  1. 1
    0
      .gitignore
  2. 2
    2
      platformio.ini

+ 1
- 0
.gitignore View File

119
 .pioenvs
119
 .pioenvs
120
 .piolib
120
 .piolib
121
 .piolibdeps
121
 .piolibdeps
122
+lib/readme.txt
122
 
123
 
123
 #Visual Studio
124
 #Visual Studio
124
 *.sln
125
 *.sln

Marlin/platformio.ini → platformio.ini View File

24
 [env:mega2560]
24
 [env:mega2560]
25
 platform = atmelavr
25
 platform = atmelavr
26
 framework = arduino
26
 framework = arduino
27
-board = megaatmega2560
27
+board = mega2560
28
 build_flags = -I $BUILDSRC_DIR
28
 build_flags = -I $BUILDSRC_DIR
29
 board_f_cpu = 16000000L
29
 board_f_cpu = 16000000L
30
 lib_deps = ${common.lib_deps}
30
 lib_deps = ${common.lib_deps}
32
 [env:mega1280]
32
 [env:mega1280]
33
 platform = atmelavr
33
 platform = atmelavr
34
 framework = arduino
34
 framework = arduino
35
-board = megaatmega1280
35
+board = mega1280
36
 build_flags = -I $BUILDSRC_DIR
36
 build_flags = -I $BUILDSRC_DIR
37
 board_f_cpu = 16000000L
37
 board_f_cpu = 16000000L
38
 lib_deps = ${common.lib_deps}
38
 lib_deps = ${common.lib_deps}

Loading…
Cancel
Save