-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathACME.ACME_BSP.pdsc
104 lines (97 loc) · 4.44 KB
/
ACME.ACME_BSP.pdsc
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
<?xml version="1.0" encoding="utf-8"?>
<package schemaVersion="1.7.7" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Open-CMSIS-Pack/Open-CMSIS-Pack-Spec/main/schema/PACK.xsd">
<vendor>ACME</vendor>
<name>ACME_BSP</name>
<description>Board Support Pack for ACMEBoardCM4</description>
<url>https://www.acme-website.com/pack/</url>
<repository type="git">https://github.com/Open-CMSIS-Pack/BSP-Pack-HandsOn.git</repository>
<supportContact></supportContact>
<license>LICENSE</license>
<licenseSets>
<licenseSet id="all" default="true" gating="true">
<license name="LICENSE" title="Apache 2.0 License"/>
</licenseSet>
</licenseSets>
<releases>
<release version="1.0.1" date="2024-06-10">
Updated gen_pack.sh script.
Added licenseSets.
Added csloution example.
</release>
<release version="1.0.0" date="2022-04-21">
Initial release
</release>
</releases>
<keywords>
<keyword>ACME</keyword>
<keyword>ACME_BSP</keyword>
<keyword>ACMEBoardCM4</keyword>
</keywords>
<boards>
<board vendor="ACME" name="ACMEBoardCM4" revision="V1" salesContact="sales@acme-corp.com" orderForm="https://www.acme-website.com/ACMEBoardCM4">
<description>ACME ACMEBoardCM4 Board Description</description>
<memory name="SRAM-EX" access="rwx" start="0x40000000" size="0x200000"/>
<algorithm name="Flash/SRAM-EX.FLM" start="0x40000000" size="0x200000" style="Keil"/>
<image small="Images/ACMEBoardCM4_small.png" large="Images/ACMEBoardCM4_large.png"/>
<book category="setup" name="Docs/ACMEBoardCM4/ACMEBoardCM4_setup.pdf" title="Getting Started"/>
<book category="schematic" name="Docs/ACMEBoardCM4/ACMEBoardCM4_schematics.pdf" title="Schematics"/>
<book category="manual" name="Docs/ACMEBoardCM4/ACMEBoardCM4_um.pdf" title="User Manual"/>
<book category="other" name="Docs/ACMEBoardCM4/README.md" title="Guide"/>
<mountedDevice deviceIndex="0" Dvendor="Generic:5" Dname="ACMECM4260"/>
<compatibleDevice deviceIndex="0" Dvendor="Generic:5" Dfamily="ACMECM4 Series"/>
<feature type="PWR" n="5" name="USB Powered"/>
<feature type="DIO" n="8"/>
<feature type="SPI" n="1"/>
<feature type="LED" n="6" name="User LEDs"/>
<feature type="ArduinoFF" n="1"/>
<debugProbe name="CMSIS-DAP" version="2.1" debugLink="swd" connector="USB-C"/>
</board>
</boards>
<conditions>
<condition id="ACMECM4 Series">
<description>ARM Cortex M4 device required</description>
<require Dfamily="ACMECM4 Series" Dvendor="Generic:5"/>
</condition>
</conditions>
<components>
<!-- The following code is used for adding a bundle to the PDSC file -->
<bundle Cbundle="ACMEBoardCM4" Cclass="Board Support" Cversion="1.0.1">
<description>ACMEBoardCM4 custom board support package</description>
<doc>Docs/BSP/MyBSP.htm</doc>
<component Cgroup="Board Setup" condition="ACMECM4 Series">
<description>Custom board setup code</description>
<files>
<file category="doc" name="Docs/BSP/Setup.htm"/>
<file category="header" name="BSP/Include/setup.h"/>
<file category="source" name="BSP/Source/setup.c"/>
</files>
</component>
</bundle>
<!-- VIO component for ACMEBoardCM4 -->
<component Cclass="CMSIS Driver" Cgroup="VIO" Csub="Board" Cvariant="ACMEBoardCM4" Cversion="1.2.0" Capiversion="0.1.0" condition="ACMECM4 Series">
<description>Virtual I/O implementation for ACMEBoardCM4</description>
<RTE_Components_h>
#define RTE_VIO_BOARD
#define RTE_VIO_ACMEBoardCM4
</RTE_Components_h>
<files>
<file category="source" name="Drivers/vio_ACMEBoardCM4.c"/>
</files>
</component>
</components>
<examples>
<example name="Blinky" folder="Examples/Blinky" doc="">
<description>This is a blinky example.</description>
<board name="ACMEBoardCM4" vendor="ACME"/>
<project>
<environment name="csolution" folder="./Examples/Blinky" load="./Examples/Blinky/Blinky.csolution.yml"/>
</project>
<attributes>
<component Cclass="CMSIS" Cgroup="Core"/>
<component Cclass="Device" Cgroup="Startup"/>
<keyword>ACME</keyword>
<keyword>Getting Started</keyword>
</attributes>
</example>
</examples>
</package>