forked from andrivet/ADVi3pp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
executable file
·80 lines (71 loc) · 2.73 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# ADVi3++ Firmware
# PlatformIO Configuration File
#
# For detailed documentation with EXAMPLES:
#
# http://docs.platformio.org/en/latest/projectconf.html
#
[platformio]
description = ADVi3++ Firmware
src_dir = Marlin
build_dir = .pioenvs
lib_dir = .piolib
libdeps_dir = .piolibdeps
default_envs = i3plus, i3plus-bltouch, i3plus-bltouch3, i3plus-mark2, i3plus-he180021, i3plus-he180021-bltouch, i3plus-he180021-bltouch3
[common]
platform = atmelavr
board = megaatmega2560
framework = arduino
build_flags = -I $BUILDSRC_DIR -Wall -std=c++14
board_build.f_cpu = 16000000L
monitor_speed = 115200
[env:i3plus]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags}
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-bltouch]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_BLTOUCH
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-bltouch3]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_BLTOUCH3
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-mark2]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_MARK2
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-he180021]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_HE180021
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-he180021-bltouch]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_HE180021 -D ADVi3PP_BLTOUCH
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}
[env:i3plus-he180021-bltouch3]
platform = ${common.platform}
board = ${common.board}
framework = ${common.framework}
build_flags = ${common.build_flags} -D ADVi3PP_HE180021 -D ADVi3PP_BLTOUCH3
board_build.f_cpu = ${common.board_build.f_cpu}
monitor_speed = ${common.monitor_speed}