-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathplatformio.ini
130 lines (103 loc) · 4.34 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
; PlatformIO Project Configuration File
;
; Build options: build flags, source filter
; Upload options: custom upload port, speed and extra flags
; Library options: dependencies, extra library storages
; Advanced options: extra scripting
;
; Please visit documentation for the other options and examples
; https://docs.platformio.org/page/projectconf.html
; #############################################################################
; ### PlatformIO Project Configuration File ###
; #############################################################################
[platformio]
name = A320_LightPanel
description = This is a project for the A320 LightPanel which can appear as an joystick under Windows.
; #############################################################################
; ### Options - parameters that can be reused in one or more enviroments ###
; #############################################################################
[options]
platform = atmelavr
board = micro
framework = arduino
lib_deps = mheironimus/Joystick@^2.1.1
unittesting_buildflag = -D unitTesting
generic_hw_buildflag = -D generic_hw
coverage_buildflag =
-lgcov
--coverage
-fprofile-abs-path
-Og
selected_tests =
test_generic_circular*
; #############################################################################
; ### Settings Common to all environments ###
; #############################################################################
[env]
lib_ldf_mode = deep
; #############################################################################
; ### Local and Cloud Unittesting : SELECTED generic unittests ###
; #############################################################################
[env:selected_generic_unittests]
platform = native
build_flags =
${options.unittesting_buildflag}
${options.generic_hw_buildflag}
${options.coverage_buildflag}
test_framework = unity
test_filter = ${options.selected_tests}
; debug_test =
; #############################################################################
; ### Local and Cloud Unittesting : ALL generic unittests ###
; #############################################################################
[env:all_generic_unittests]
platform = native
build_flags =
${options.unittesting_buildflag}
${options.generic_hw_buildflag}
${options.coverage_buildflag}
test_framework = unity
test_filter = test_generic*
check_src_filters =
lib/*
src/*
test/*
; #############################################################################
; ### Arduino Mirco environmet ###
; #############################################################################
[env:micro]
platform = ${options.platform}
board = ${options.board}
framework = ${options.framework}
board_build.mcu = atmega32u4
board_build.f_cpu = 16000000L
lib_deps = ${options.lib_deps}
board_build.usb_product = "A320_LightPanel"
extra_scripts =
pre:.github/workflows/buildinfo.py
; #############################################################################
; ### Local Application build ###
; #############################################################################
[env:target_application]
platform = ${options.platform}
board = ${options.board}
framework = ${options.framework}
extra_scripts =
pre:.github/workflows/buildinfo.py
; #############################################################################
; ### Target Unit Tests ###
; #############################################################################
[env:target_selected_unittests]
platform = ${options.platform}
board = ${options.board}
framework = ${options.framework}
build_flags = ${options.unittesting_buildflag}
test_framework = unity
test_filter = ${options.selected_tests}
; #############################################################################
; ### Cloud Application build ###
; #############################################################################
[env:production_application]
platform = ${options.platform}
board = ${options.board}
framework = ${options.framework}