forked from Open-CMSIS-Pack/csolution-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathHello.csolution.yml
More file actions
27 lines (22 loc) · 983 Bytes
/
Copy pathHello.csolution.yml
File metadata and controls
27 lines (22 loc) · 983 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
solution:
created-for: CMSIS-Toolbox@2.2.0
description: Print Hello World and a counter value via UART
cdefault:
compiler: AC6 # currently required for components Compiler:I/O
# it is recommended to list the pack or packs that define the device or board used in the csolution.yml file
packs:
- pack: ARM::CMSIS@6.0.0
- pack: ARM::CMSIS-RTX
target-types:
- type: AVH # runs on Arm Virtual Hardware
device: ARM::SSE-300-MPS3
# add more hardware targets (don't forget to add the required packs)
build-types: # defines toolchain options for 'debug' and 'release'
- type: Debug
debug: on
optimize: none
- type: Release
debug: off
optimize: balanced
projects: # list related projects
- project: ./Hello.cproject.yml