Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[schema] Add CLANG_TI compiler #339

Merged
merged 1 commit into from
Dec 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion doxygen/pack.dxy
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "Open-CMSIS-Pack"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "Version 1.7.44"
PROJECT_NUMBER = "Version 1.7.45"

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
6 changes: 6 additions & 0 deletions doxygen/src/General.txt
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,12 @@ The following sections provide more information:
<th>Version</th>
<th>Description</th>
</tr>
<tr>
<td>1.7.45</td>
<td>
- added 'CLANG_TI' to 'CompilerEnumType'
</td>
</tr>
<tr>
<td>1.7.44</td>
<td>
Expand Down
11 changes: 7 additions & 4 deletions schema/PACK.xsd
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
limitations under the License.


$Date: 14. Nov 2024
$Revision: 1.7.44
$Date: 18. Dec 2024
$Revision: 1.7.45
$Project: Schema File for Package Description File Format Specification

Package file name convention <vendor>.<name>.<version>.pack
SchemaVersion=1.7.44
SchemaVersion=1.7.45

18. Dec 2024: v1.7.45
- added 'CLANG_TI' to 'CompilerEnumType'
14. Nov 2024: v1.7.44
- added optional 'environments' section below package element to hold environment-specific information pertaining to the package as a whole
12. Nov 2024: v1.7.43
Expand Down Expand Up @@ -242,7 +244,7 @@

-->

<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.7.44">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.7.45">

<!-- NonNegativeInteger specifies the format in which numbers are represented in hexadecimal or decimal format -->
<xs:simpleType name="NonNegativeInteger">
Expand Down Expand Up @@ -1387,6 +1389,7 @@
<xs:enumeration value="XC"/> <!-- Microchip MPLAB XC32 -->
<xs:enumeration value="CLANG"/>
<xs:enumeration value="Renesas"/>
<xs:enumeration value="CLANG_TI"/>
<xs:enumeration value="*" />
</xs:restriction>
</xs:simpleType>
Expand Down
Loading