From 9f95ff5b6ba01db09552b84a0ab79607060a2666 Mon Sep 17 00:00:00 2001 From: Ali Labbene Date: Wed, 11 Dec 2019 08:59:21 +0100 Subject: Official ARM version: v5.4.0 Add CMSIS V5.4.0, please refer to index.html available under \docs folder. Note: content of \CMSIS\Core\Include has been copied under \Include to keep the same structure used in existing projects, and thus avoid projects mass update Note: the following components have been removed from ARM original delivery (as not used in ST packages) - CMSIS_EW2018.pdf - .gitattributes - .gitignore - \Device - \CMSIS - \CoreValidation - \DAP - \Documentation - \DoxyGen - \Driver - \Pack - \RTOS\CMSIS_RTOS_Tutorial.pdf - \RTOS\RTX - \RTOS\Template - \RTOS2\RTX - \Utilities - All ARM/GCC projects files are deleted from \DSP, \RTOS and \RTOS2 Change-Id: Ia026c3f0f0d016627a4fb5a9032852c33d24b4d3 --- docs/Pack/html/element_releases.html | 199 +++++++++++++++++++++++++++++++++++ 1 file changed, 199 insertions(+) create mode 100644 docs/Pack/html/element_releases.html (limited to 'docs/Pack/html/element_releases.html') diff --git a/docs/Pack/html/element_releases.html b/docs/Pack/html/element_releases.html new file mode 100644 index 0000000..1890844 --- /dev/null +++ b/docs/Pack/html/element_releases.html @@ -0,0 +1,199 @@ + + + + + +/package/releases element +CMSIS-Pack: /package/releases element + + + + + + + + + + + + + + +
+
+ + + + + + + +
+
CMSIS-Pack +  Version 1.5.0 +
+
Delivery Mechanism for Software Packs
+
+
+ +
+
    + +
+
+ + + +
+
+ +
+
+
+ +
+ + + + +
+ +
+ +
+
+
/package/releases element
+
+
+

Contains the release history of the Pack. This element is mandatory. No more than one such group can exist in a Pack. It contains the full release history of the Pack.

+

Example:

+
<package>
+
...
+
<releases>
+
...
+
</releases>
+
...
+
</package>
+

 

+ + + + + + + + + +
Parent Element Element Chain
package /package
Child Element Description Type Occurrence
release Contains the version number of the release with some brief information about the main changes in that specific release. xs:string 1..*
+

 

+
+

+/package/releases/release

+

Contains brief information of the main changes in each release version of a Pack. The content is a string written between the opening and closing release tags. The latest release version is always listed on top.

+

Example:

+
<releases>
+
<release version="1.1.1">Fixed a problem with the feature xyz.
+
</release>
+
<release version="1.1.0">Introduces a new feature xyz.
+
</release>
+
<release version="1.0.0">First published version.
+
</release>
+
</releases>
+

Example for a public repository:

+
<package>
+
...
+
<repository type="git">https://github.com/ARM-software/CMSIS-Driver.git</repository
+
<releases>
+
<release version="2.1.0" tag="2.1.0" url="https://github.com/ARM-software/CMSIS-Driver/archive/2.1.0.zip">
+
Added LAN9220 Ethernet MAC+PHY driver.
+
</release>
+
<release version="2.0.0" tag="2.0.0" url="https://github.com/ARM-software/CMSIS-Driver/archive/2.0.0.zip">
+
First published version.
+
</release>
+
</releases>
+
...
+
</package>
+

 

+ + + + + + + + + + + + + + + + + + + +
Parent Element Element Chain
releases /package/releases element
Attributes Description Type Use
version Version number of the release. The version format is described in Version Type. VersionType required
date Release date (specified as YYYY-MM-DD, for example 2014-12-14 (14th December 2014). xs:date optional
tag In case the repository element is specified, the tag attribute is used to specify the repository tag that corresponds to this release of the pack. xs:string optional
url URL specifying the location of the pack of the specified version. This can be used to override the default location being <url>/<vendor>.<name>.<version>.pack xs:anyURI optional
deprecated Pack is no longer officially supported after the set date. It will be excluded from checks for update. Deprecated packs may remain available for download from the server. Tools will continue to work but may provide indicators highlighting end of support for the pack and its content. Not recommended for use with new projects. Note this attribute is only relevant when set for the latest release located on top of the releases section. xs:date optional
replacement Specifies the vendor and name of the Pack that shall be used instead. Use in conjunction with the deprecated attribute. E.g. the maintainer of the Pack A.X_DFP changes from vendor A to vendor B. In this case the attribute deprecated gets set in the A.X_DFP.pdsc and the replacement attribute set to B.X_DFP. Tools use this information to redirect users to a supported pack. xs:string optional
+

 

+
+
+
+ + + + -- cgit