forked from andrivet/ADVi3pp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
38 lines (33 loc) · 832 Bytes
/
platformio.ini
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[platformio]
src_dir = Marlin
lib_dir = lib
libdeps_dir = .piolibdeps
env_default = i3plus, i3plus-bltouch
[env:i3plus]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -I $BUILDSRC_DIR -Wall
board_f_cpu = 16000000L
monitor_baud = 115200
[env:i3plus-bltouch]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -I $BUILDSRC_DIR -D ADVi3PP_BLTOUCH -Wall
board_f_cpu = 16000000L
monitor_baud = 115200
[env:i3plus-debug]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -I $BUILDSRC_DIR -D DEBUG -Wall
board_f_cpu = 16000000L
monitor_baud = 115200
[env:i3plus-bltouch-debug]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -I $BUILDSRC_DIR -D ADVi3PP_BLTOUCH -D DEBUG -Wall
board_f_cpu = 16000000L
monitor_baud = 115200