-
Notifications
You must be signed in to change notification settings - Fork 2
/
platformio.ini
735 lines (689 loc) · 23.3 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
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
;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 specific configurations
; *****************************************************************************
[platformio]
; Define default environments, which shall be automatically be built.
;default_envs = CalibTarget
;default_envs = CalibSim
;default_envs = ConvoyLeaderTarget
;default_envs = ConvoyLeaderSim
;default_envs = ConvoyFollowerSim
;default_envs = ConvoyFollowerTarget
;default_envs = LineFollowerTarget
;default_envs = LineFollowerSim
default_envs = LineFollowerSimpleSim
;default_envs = RemoteControlTarget
;default_envs = RemoteControlSim
;default_envs = SensorFusionTarget
;default_envs = SensorFusionSim
;default_envs = TestSim
; *****************************************************************************
; Common configurations, which is independed of the environment.
; *****************************************************************************
[common]
build_flags =
-DTEAM_NAME_LINE_1="\"Radon\""
-DTEAM_NAME_LINE_2="\"Ulzer\""
; *****************************************************************************
; Static check configuration
; *****************************************************************************
[static_check_configuration]
check_tool = cppcheck, clangtidy
check_severity = medium, high
check_patterns =
include
src
lib
check_flags =
cppcheck: cppcheck: --suppress=*:*/libdeps/* --suppress=*:*lib/Webots/* --suppress=noExplicitConstructor --suppress=unusedFunction --std=c++11
clangtidy: --header-filter='' --checks=-*,clang-analyzer-*,performance-*,portability-*,readability-uppercase-literal-suffix,readability-redundant-control-flow --warnings-as-errors=-*,clang-analyzer-*,performance-*,portability-*,readability-uppercase-literal-suffix,readability-redundant-control-flow
check_skip_packages = yes
; *****************************************************************************
; Target environment for Zumo32U4.
; *****************************************************************************
[hal:Target]
platform = atmelavr @ ~4.1.0
board = a-star32U4
framework = arduino
build_flags =
${common.build_flags}
-Wno-switch
-Werror
lib_deps =
BlueAndi/ZumoHALATmega32u4 @ ~1.0.0
lib_ignore =
HALTest
extra_scripts =
post:./scripts/create_binary.py
monitor_speed = 115200
; The monitor port shows the debug output and the test output.
; If you connect the robot to your pc, this is the port you will see.
monitor_port = com11
; The upload port is spawned by the bootmonitor and used to update the program on the target.
; If you connect the robot to your pc, press twice reset button to jump to the bootloader,
; this is the port you will see.
upload_port = com5
; The test port is spawned by the bootmonitor and used to update the test on the target.
; If you connect the robot to your pc, press twice reset button to jump to the bootloader,
; this is the port you will see.
test_port = com9
; *****************************************************************************
; PC target environment for Webots simulation.
;
; It is assumed that the environment variable WEBOTS_HOME is set to the
; Webots directory, e.g. WEBOTS_HOME=C:\Users\<user>\AppData\Local\Programs\Webots
; *****************************************************************************
[hal:Sim]
platform = native @ ~1.2.1
build_flags =
-std=c++11
-I./lib/Webots/include/c
-I./lib/Webots/include/cpp
-D TARGET_NATIVE
-D _USE_MATH_DEFINES
lib_deps =
MainNative
BlueAndi/ZumoHALWebots @ ~1.1.0
Webots
lib_ignore =
HALTest
extra_scripts =
./scripts/webots_launcher.py
pre:$PROJECT_LIBDEPS_DIR/$PIOENV/ZumoHALWebots/scripts/create_webots_library.py
pre:$PROJECT_LIBDEPS_DIR/$PIOENV/ZumoHALWebots/scripts/copy_sounds.py
post:$PROJECT_LIBDEPS_DIR/$PIOENV/ZumoHALWebots/scripts/copy_webots_shared_libs.py
post:./scripts/package.py
webots_robot_name = Zumo
webots_robot_serial_rx_channel = 1
webots_robot_serial_tx_channel = 2
; *****************************************************************************
; PC target environment for tests
; *****************************************************************************
[hal:Test]
platform = native @ ~1.2.1
build_flags =
-std=c++11
-Itest/common
-D TARGET_NATIVE
-D UNIT_TEST
-D _USE_MATH_DEFINES
lib_deps =
MainTestNative
BlueAndi/ArduinoNative @ ~0.2.1
BlueAndi/ZumoHALInterfaces @ ~1.0.2
HALTest
lib_ignore =
Webots
extra_scripts =
; *****************************************************************************
; Calibration application
; *****************************************************************************
[app:Calib]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPCalib
Service
lib_ignore =
APPConvoyLeader
APPLineFollower
APPRemoteControl
APPSensorFusion
APPTest
; *****************************************************************************
; Calibration application specific HAL for target
; *****************************************************************************
[hal_app:CalibTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALCalibTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Calibration application specific HAL for simulation
; *****************************************************************************
[hal_app:CalibSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALCalibSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Convoy leader application
; *****************************************************************************
[app:ConvoyLeader]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPConvoyLeader
Service
gabryelreyes/SerialMuxProt @ ~2.2.2
lib_ignore =
APPCalib
APPConvoyFollower
APPLineFollower
APPRemoteControl
APPSensorFusion
APPTest
; *****************************************************************************
; Convoy leader application specific HAL for target
; *****************************************************************************
[hal_app:ConvoyLeaderTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALConvoyLeaderTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Convoy leader application specific HAL for simulation
; *****************************************************************************
[hal_app:ConvoyLeaderSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALConvoyLeaderSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Convoy follower application
; *****************************************************************************
[app:ConvoyFollower]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPConvoyFollower
Service
gabryelreyes/SerialMuxProt @ ~2.2.2
lib_ignore =
APPCalib
APPConvoyLeader
APPLineFollower
APPRemoteControl
APPSensorFusion
APPTest
; *****************************************************************************
; Convoy follower application specific HAL for target
; *****************************************************************************
[hal_app:ConvoyFollowerTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALConvoyFollowerTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Convoy follower application specific HAL for simulation
; *****************************************************************************
[hal_app:ConvoyFollowerSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALConvoyFollowerSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Line follower application
; *****************************************************************************
[app:LineFollower]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPLineFollower
Service
lib_ignore =
APPCalib
APPConvoyFollower
APPConvoyLeader
APPRemoteControl
APPSensorFusion
APPTest
; *****************************************************************************
; Simple line follower application
; *****************************************************************************
[app:LineFollowerSimple]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPLineFollowerSimple
Service
lib_ignore =
APPCalib
APPConvoyFollower
APPConvoyLeader
APPLineFollower
APPRemoteControl
APPSensorFusion
APPTest
; *****************************************************************************
; Line follower application specific HAL for target
; *****************************************************************************
[hal_app:LineFollowerTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALLineFollowerTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Line follower application specific HAL for simulation
; *****************************************************************************
[hal_app:LineFollowerSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALLineFollowerSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Remote control application
; *****************************************************************************
[app:RemoteControl]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPRemoteControl
Service
gabryelreyes/SerialMuxProt @ ~2.2.2
lib_ignore =
APPCalib
APPConvoyFollower
APPConvoyLeader
APPLineFollower
APPSensorFusion
APPTest
; *****************************************************************************
; Remote control application specific HAL for target
; *****************************************************************************
[hal_app:RemoteControlTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALRemoteControlTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Remote control application specific HAL for simulation
; *****************************************************************************
[hal_app:RemoteControlSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALRemoteControlSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Sensor Fusion application
; *****************************************************************************
[app:SensorFusion]
build_flags =
${common.build_flags}
-DLOG_DEBUG_ENABLE
lib_deps =
APPSensorFusion
Service
gabryelreyes/SerialMuxProt @ ~2.2.2
lib_ignore =
APPCalib
APPConvoyFollower
APPConvoyLeader
APPLineFollower
APPRemoteControl
APPTest
; *****************************************************************************
; Sensor Fusion application specific HAL for target
; *****************************************************************************
[hal_app:SensorFusionTarget]
extends = hal:Target
build_flags =
${hal:Target.build_flags}
lib_deps =
${hal:Target.lib_deps}
HALSensorFusionTarget
lib_ignore =
${hal:Target.lib_ignore}
extra_scripts =
${hal:Target.extra_scripts}
; *****************************************************************************
; Sensor Fusion application specific HAL for simulation
; *****************************************************************************
[hal_app:SensorFusionSim]
extends = hal:Sim
build_flags =
${hal:Sim.build_flags}
lib_deps =
${hal:Sim.lib_deps}
HALSensorFusionSim
lib_ignore =
${hal:Sim.lib_ignore}
extra_scripts =
${hal:Sim.extra_scripts}
; *****************************************************************************
; Test application
; *****************************************************************************
[app:Test]
build_flags =
${common.build_flags}
lib_deps =
APPTest
Service
lib_ignore =
APPCalib
APPConvoyFollower
APPConvoyLeader
APPLineFollower
APPRemoteControl
APPSensorFusion
; *****************************************************************************
; Test application specific HAL for target
; *****************************************************************************
[hal_app:TestSim]
extends = hal:Test
build_flags =
${hal:Test.build_flags}
lib_deps =
${hal:Test.lib_deps}
HALTestSim
lib_ignore =
${hal:Test.lib_ignore}
extra_scripts =
${hal:Test.extra_scripts}
; *****************************************************************************
; Calibration application on simulation
; *****************************************************************************
[env:CalibSim]
extends = hal_app:CalibSim, app:Calib, static_check_configuration
build_flags =
${hal_app:CalibSim.build_flags}
${app:Calib.build_flags}
lib_deps =
${hal_app:CalibSim.lib_deps}
${app:Calib.lib_deps}
lib_ignore =
${hal_app:CalibSim.lib_ignore}
${app:Calib.lib_ignore}
extra_scripts =
${hal_app:CalibSim.extra_scripts}
; *****************************************************************************
; Calibration application on target
; *****************************************************************************
[env:CalibTarget]
extends = hal_app:CalibTarget, app:Calib, static_check_configuration
build_flags =
${hal_app:CalibTarget.build_flags}
${app:Calib.build_flags}
lib_deps =
${hal_app:CalibTarget.lib_deps}
${app:Calib.lib_deps}
lib_ignore =
${hal_app:CalibTarget.lib_ignore}
${app:Calib.lib_ignore}
extra_scripts =
${hal_app:CalibTarget.extra_scripts}
; *****************************************************************************
; Convoy leader application on target
; *****************************************************************************
[env:ConvoyLeaderTarget]
extends = hal_app:ConvoyLeaderTarget, app:ConvoyLeader, static_check_configuration
build_flags =
${hal_app:ConvoyLeaderTarget.build_flags}
${app:ConvoyLeader.build_flags}
lib_deps =
${hal_app:ConvoyLeaderTarget.lib_deps}
${app:ConvoyLeader.lib_deps}
lib_ignore =
${hal_app:ConvoyLeaderTarget.lib_ignore}
${app:ConvoyLeader.lib_ignore}
extra_scripts =
${hal_app:ConvoyLeaderTarget.extra_scripts}
; *****************************************************************************
; Convoy leader application on simulation
; *****************************************************************************
[env:ConvoyLeaderSim]
extends = hal_app:ConvoyLeaderSim, app:ConvoyLeader, static_check_configuration
build_flags =
${hal_app:ConvoyLeaderSim.build_flags}
${app:ConvoyLeader.build_flags}
lib_deps =
${hal_app:ConvoyLeaderSim.lib_deps}
${app:ConvoyLeader.lib_deps}
lib_ignore =
${hal_app:ConvoyLeaderSim.lib_ignore}
${app:ConvoyLeader.lib_ignore}
extra_scripts =
${hal_app:ConvoyLeaderSim.extra_scripts}
; *****************************************************************************
; Convoy follower application on target
; *****************************************************************************
[env:ConvoyFollowerTarget]
extends = hal_app:ConvoyFollowerTarget, app:ConvoyFollower, static_check_configuration
build_flags =
${hal_app:ConvoyFollowerTarget.build_flags}
${app:ConvoyFollower.build_flags}
lib_deps =
${hal_app:ConvoyFollowerTarget.lib_deps}
${app:ConvoyFollower.lib_deps}
lib_ignore =
${hal_app:ConvoyFollowerTarget.lib_ignore}
${app:ConvoyFollower.lib_ignore}
extra_scripts =
${hal_app:ConvoyFollowerTarget.extra_scripts}
; *****************************************************************************
; Convoy follower application on simulation
; *****************************************************************************
[env:ConvoyFollowerSim]
extends = hal_app:ConvoyFollowerSim, app:ConvoyFollower, static_check_configuration
build_flags =
${hal_app:ConvoyFollowerSim.build_flags}
${app:ConvoyFollower.build_flags}
lib_deps =
${hal_app:ConvoyFollowerSim.lib_deps}
${app:ConvoyFollower.lib_deps}
lib_ignore =
${hal_app:ConvoyFollowerSim.lib_ignore}
${app:ConvoyFollower.lib_ignore}
extra_scripts =
${hal_app:ConvoyFollowerSim.extra_scripts}
; *****************************************************************************
; Line follower application on target
; *****************************************************************************
[env:LineFollowerTarget]
extends = hal_app:LineFollowerTarget, app:LineFollower, static_check_configuration
build_flags =
${hal_app:LineFollowerTarget.build_flags}
${app:LineFollower.build_flags}
lib_deps =
${hal_app:LineFollowerTarget.lib_deps}
${app:LineFollower.lib_deps}
lib_ignore =
${hal_app:LineFollowerTarget.lib_ignore}
${app:LineFollower.lib_ignore}
extra_scripts =
${hal_app:LineFollowerTarget.extra_scripts}
; *****************************************************************************
; Line follower application on simulation
; *****************************************************************************
[env:LineFollowerSim]
extends = hal_app:LineFollowerSim, app:LineFollower, static_check_configuration
build_flags =
${hal_app:LineFollowerSim.build_flags}
${app:LineFollower.build_flags}
-D DEBUG_ALGORITHM
;-D DEBUG_ODOMETRY
lib_deps =
${hal_app:LineFollowerSim.lib_deps}
${app:LineFollower.lib_deps}
lib_ignore =
${hal_app:LineFollowerSim.lib_ignore}
${app:LineFollower.lib_ignore}
extra_scripts =
${hal_app:LineFollowerSim.extra_scripts}
; *****************************************************************************
; Simple line follower application on target
; *****************************************************************************
[env:LineFollowerSimpleTarget]
extends = hal_app:LineFollowerTarget, app:LineFollowerSimple, static_check_configuration
build_flags =
${hal_app:LineFollowerTarget.build_flags}
${app:LineFollowerSimple.build_flags}
lib_deps =
${hal_app:LineFollowerTarget.lib_deps}
${app:LineFollowerSimple.lib_deps}
lib_ignore =
${hal_app:LineFollowerTarget.lib_ignore}
${app:LineFollowerSimple.lib_ignore}
extra_scripts =
${hal_app:LineFollowerTarget.extra_scripts}
; *****************************************************************************
; Simple line follower application on simulation
; *****************************************************************************
[env:LineFollowerSimpleSim]
extends = hal_app:LineFollowerSim, app:LineFollowerSimple, static_check_configuration
build_flags =
${hal_app:LineFollowerSim.build_flags}
${app:LineFollowerSimple.build_flags}
lib_deps =
${hal_app:LineFollowerSim.lib_deps}
${app:LineFollowerSimple.lib_deps}
lib_ignore =
${hal_app:LineFollowerSim.lib_ignore}
${app:LineFollowerSimple.lib_ignore}
extra_scripts =
${hal_app:LineFollowerSim.extra_scripts}
; *****************************************************************************
; Remote control application on target
; *****************************************************************************
[env:RemoteControlTarget]
extends = hal_app:RemoteControlTarget, app:RemoteControl, static_check_configuration
build_flags =
${hal_app:RemoteControlTarget.build_flags}
${app:RemoteControl.build_flags}
lib_deps =
${hal_app:RemoteControlTarget.lib_deps}
${app:RemoteControl.lib_deps}
lib_ignore =
${hal_app:RemoteControlTarget.lib_ignore}
${app:RemoteControl.lib_ignore}
extra_scripts =
${hal_app:RemoteControlTarget.extra_scripts}
; *****************************************************************************
; Remote control application on simulation
; *****************************************************************************
[env:RemoteControlSim]
extends = hal_app:RemoteControlSim, app:RemoteControl, static_check_configuration
build_flags =
${hal_app:RemoteControlSim.build_flags}
${app:RemoteControl.build_flags}
lib_deps =
${hal_app:RemoteControlSim.lib_deps}
${app:RemoteControl.lib_deps}
lib_ignore =
${hal_app:RemoteControlSim.lib_ignore}
${app:RemoteControl.lib_ignore}
extra_scripts =
${hal_app:RemoteControlSim.extra_scripts}
; *****************************************************************************
; Sensor Fusion application on target
; *****************************************************************************
[env:SensorFusionTarget]
extends = hal_app:SensorFusionTarget, app:SensorFusion, static_check_configuration
build_flags =
${hal_app:SensorFusionTarget.build_flags}
${app:SensorFusion.build_flags}
lib_deps =
${hal_app:SensorFusionTarget.lib_deps}
${app:SensorFusion.lib_deps}
lib_ignore =
${hal_app:SensorFusionTarget.lib_ignore}
${app:SensorFusion.lib_ignore}
extra_scripts =
${hal_app:SensorFusionTarget.extra_scripts}
; *****************************************************************************
; Sensor Fusion application on simulation
; *****************************************************************************
[env:SensorFusionSim]
extends = hal_app:SensorFusionSim, app:SensorFusion, static_check_configuration
build_flags =
${hal_app:SensorFusionSim.build_flags}
${app:SensorFusion.build_flags}
lib_deps =
${hal_app:SensorFusionSim.lib_deps}
${app:SensorFusion.lib_deps}
lib_ignore =
${hal_app:SensorFusionSim.lib_ignore}
${app:SensorFusion.lib_ignore}
extra_scripts =
${hal_app:SensorFusionSim.extra_scripts}
; *****************************************************************************
; PC target environment for tests
; *****************************************************************************
[env:TestSim]
extends = hal_app:TestSim, app:Test, static_check_configuration
build_flags =
${hal_app:TestSim.build_flags}
${app:Test.build_flags}
lib_deps =
${hal_app:TestSim.lib_deps}
${app:Test.lib_deps}
lib_ignore =
${hal_app:TestSim.lib_ignore}
${app:Test.lib_ignore}
extra_scripts =
${hal_app:TestSim.extra_scripts}