ソースを参照

Patch platformio.ini to fix build error in DevIoT

For compatibility with DevIoT, until that can be solved.
Scott Lahteine 7年前
コミット
47cae2929f
2個のファイルの変更3行の追加2行の削除
  1. 1
    0
      .gitignore
  2. 2
    2
      platformio.ini

+ 1
- 0
.gitignore ファイルの表示

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 ファイルの表示

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}

読み込み中…
キャンセル
保存