-
Notifications
You must be signed in to change notification settings - Fork 0
/
stm32.csolution.yml
51 lines (41 loc) · 1.38 KB
/
stm32.csolution.yml
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
solution:
created-for: cmsis-toobox@2.6.1
description: Example standalone for STM32F4 using Edge Impulse SDK
cdefault:
# List of tested compilers that can be selected
select-compiler:
- compiler: AC6
- compiler: GCC
- compiler: IAR
compiler: GCC # Note: doesn't work with 13.3.1!
# List the packs that define the device and/or board
packs:
- pack: ARM::CMSIS@6.0.0
- pack: ARM::CMSIS-DSP@1.15.0
- pack: ARM::CMSIS-NN@4.1.0
- pack: Keil::STM32F4xx_DFP@>=3.0.0
- pack: Keil::NUCLEO-F446RE_BSP@1.0.0
- pack: Keil::NUCLEO-F401RE_BSP@1.0.0
target-types:
- type: Nucleo_STM32F446
device: STMicroelectronics::STM32F446RETx
board: STMicroelectronics::NUCLEO-F446RE:Rev.C
variables:
- Target-Layer: ./target/nucleo_f466re/target.clayer.yml
- type: Nucleo_STM32F401
device: STMicroelectronics::STM32F401RETx
board: STMicroelectronics::NUCLEO-F401RE:Rev.C
variables:
- Target-Layer: ./target/nucleo_f401re/target.clayer.yml
output-dirs:
outdir: ./build/$TargetType$/$Compiler$/$BuildType$/$Project$/outdir
build-types: # defines toolchain options for 'debug' and 'release'
- type: Debug
debug: on
optimize: none
- type: Release
debug: off
optimize: speed
# List related projects
projects:
- project: ./stm32.cproject.yml