-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathplatformio.ini
More file actions
34 lines (29 loc) · 775 Bytes
/
platformio.ini
File metadata and controls
34 lines (29 loc) · 775 Bytes
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
[env]
monitor_speed = 115200
lib_deps:
autowp/autowp-mcp2515@^1.3.1
build_flags = -I${PROJECT_INCLUDE_DIR} -I${PROJECT_INCLUDE_DIR}/low_level -I${PROJECT_INCLUDE_DIR}/motors -DCANCONTROL_MAIN
test_framework = unity
test_filter = test_embedded
test_build_src = yes
[env:uno]
framework = arduino
platform = atmelavr
board = uno
build_flags = ${env.build_flags} -DEXAMPLE_BASIC
[env:uno_queue]
extends = env:uno
build_flags = ${env.build_flags} -DEXAMPLE_QUEUE
[env:mega]
framework = arduino
platform = atmelavr
board = megaatmega2560
build_flags = ${env.build_flags} -DEXAMPLE_BASIC
[env:mega_queue]
extends = env:mega
build_flags = ${env.build_flags} -DEXAMPLE_QUEUE
[env:native]
platform = native
test_framework = unity
test_filter = test_native
test_build_src = no