Browse Source

Cleanup unused options (#9115)

Ivan Kravets 7 years ago
parent
commit
a994eec513
1 changed files with 7 additions and 7 deletions
  1. 7
    7
      platformio.ini

+ 7
- 7
platformio.ini View File

17
 
17
 
18
 [platformio]
18
 [platformio]
19
 src_dir = Marlin
19
 src_dir = Marlin
20
-envs_dir = .pioenvs
20
+build_dir = .pioenvs
21
 lib_dir = .piolib
21
 lib_dir = .piolib
22
 libdeps_dir = .piolibdeps
22
 libdeps_dir = .piolibdeps
23
 env_default = megaatmega2560
23
 env_default = megaatmega2560
54
 platform    = atmelavr
54
 platform    = atmelavr
55
 framework   = arduino
55
 framework   = arduino
56
 board       = megaatmega2560
56
 board       = megaatmega2560
57
-build_flags = ${common.build_flags} -I $BUILDSRC_DIR
57
+build_flags = ${common.build_flags}
58
 board_f_cpu = 16000000L
58
 board_f_cpu = 16000000L
59
 lib_deps    = ${common.lib_deps}
59
 lib_deps    = ${common.lib_deps}
60
 src_filter  = ${common.default_src_filter}
60
 src_filter  = ${common.default_src_filter}
66
 platform    = atmelavr
66
 platform    = atmelavr
67
 framework   = arduino
67
 framework   = arduino
68
 board       = megaatmega1280
68
 board       = megaatmega1280
69
-build_flags = ${common.build_flags} -I $BUILDSRC_DIR
69
+build_flags = ${common.build_flags}
70
 board_f_cpu = 16000000L
70
 board_f_cpu = 16000000L
71
 lib_deps    = ${common.lib_deps}
71
 lib_deps    = ${common.lib_deps}
72
 src_filter  = ${common.default_src_filter}
72
 src_filter  = ${common.default_src_filter}
93
 platform    = atmelsam
93
 platform    = atmelsam
94
 framework   = arduino
94
 framework   = arduino
95
 board       = due
95
 board       = due
96
-build_flags = ${common.build_flags} -I $BUILDSRC_DIR
96
+build_flags = ${common.build_flags}
97
 lib_deps    = ${common.lib_deps}
97
 lib_deps    = ${common.lib_deps}
98
 lib_ignore  = TMC26XStepper
98
 lib_ignore  = TMC26XStepper
99
 src_filter  = ${common.default_src_filter}
99
 src_filter  = ${common.default_src_filter}
156
 platform    = atmelavr
156
 platform    = atmelavr
157
 framework   = arduino
157
 framework   = arduino
158
 board       = reprap_rambo
158
 board       = reprap_rambo
159
-build_flags = ${common.build_flags} -I $BUILDSRC_DIR
159
+build_flags = ${common.build_flags}
160
 board_f_cpu = 16000000L
160
 board_f_cpu = 16000000L
161
 lib_deps    = ${common.lib_deps}
161
 lib_deps    = ${common.lib_deps}
162
 src_filter  = ${common.default_src_filter}
162
 src_filter  = ${common.default_src_filter}
192
 platform      = teensy
192
 platform      = teensy
193
 framework     = arduino
193
 framework     = arduino
194
 board         = teensy20pp
194
 board         = teensy20pp
195
-build_flags   = ${common.build_flags} -I $BUILDSRC_DIR
195
+build_flags   = ${common.build_flags}
196
 #board_f_cpu  = 20000000L     ; Bug in Arduino framework disallows boards running at 20Mhz
196
 #board_f_cpu  = 20000000L     ; Bug in Arduino framework disallows boards running at 20Mhz
197
 lib_deps      = ${common.lib_deps}
197
 lib_deps      = ${common.lib_deps}
198
 lib_ldf_mode  = deep+
198
 lib_ldf_mode  = deep+
205
 platform    = teensy
205
 platform    = teensy
206
 framework   = arduino
206
 framework   = arduino
207
 board       = teensy35
207
 board       = teensy35
208
-build_flags = ${common.build_flags} -I $BUILDSRC_DIR
208
+build_flags = ${common.build_flags}
209
 lib_deps    = ${common.lib_deps}
209
 lib_deps    = ${common.lib_deps}
210
 lib_ignore  = Adafruit NeoPixel
210
 lib_ignore  = Adafruit NeoPixel
211
 src_filter  = ${common.default_src_filter}
211
 src_filter  = ${common.default_src_filter}

Loading…
Cancel
Save