Skip to content
Merged
Show file tree
Hide file tree
Changes from 5 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.48"
PROJECT_NUMBER = "Version 1.7.49"

# 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 @@ -80,6 +80,12 @@ packs) and provides useful tips when creating a pack.
<th>Version</th>
<th>Description</th>
</tr>
<tr>
<td>1.7.49</td>
<td>
- deprecate values 'DP' and 'ACCESS_AP' from 'type' attribute in element 'datapatch'
</td>
</tr>
<tr>
<td>1.7.48</td>
<td>
Expand Down
22 changes: 11 additions & 11 deletions doxygen/src/devices_schema.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3014,7 +3014,7 @@ Default debugger configuration for a target connection.
The table lists the values for debug protocol types. The values can be used in
- \ref element_debugconfig

<table class="cmtable" summary="Enumeration: DataPatchAccessTypeEnum">
<table class="cmtable" summary="Enumeration: DebugLinkEnum">
<tr>
<th>type=</th>
<th>Description</th>
Expand Down Expand Up @@ -4466,24 +4466,24 @@ The table lists the allowed values for data patch access types.
<th>type=</th>
<th>Description</th>
</tr>
<tr>
<td class="XML-Token">AP</td>
<td>CoreSight Access Port register access. </td>
</tr>
<tr>
<td class="XML-Token">Mem</td>
<td>Memory access. </td>
</tr>
<tr>
<td class="XML-Token">DP</td>
<td>CoreSight Debug Port register access.<br>
<td><b>Removed from specificationstarting version 1.7.49</b>: CoreSight Debug Port register access.<br>
<b>Note:</b> This type refers to accesses via the <b>DPACC</b> instruction for <b>CoreSight JTAG-DPs</b>. Please refer to the
corresponding documentation for differences in the register interface between JTAG and Serial Wire debug ports.
</td>
</tr>
<tr>
<td class="XML-Token">ACCESS_AP</td>
<td>Top-level Access Port access for a CoreSight ADIv6 DAP.</td>
</tr>
<tr>
<td class="XML-Token">AP</td>
<td>CoreSight Access Port register access. </td>
</tr>
<tr>
<td class="XML-Token">Mem</td>
<td>Memory access. </td>
<td><b>Removed from specificationstarting version 1.7.49</b>: Top-level Access Port access for a CoreSight ADIv6 DAP. </td>
</tr>
</table>

Expand Down
13 changes: 7 additions & 6 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: 08. Apr 2025
$Revision: 1.7.48
$Date: 15. Apr 2025

Check failure on line 21 in schema/PACK.xsd

View workflow job for this annotation

GitHub Actions / Validate pack schema

Modification date tag not updated, should be '14. Apr 2025'!
$Revision: 1.7.49
$Project: Schema File for Package Description File Format Specification

Package file name convention <vendor>.<name>.<version>.pack
SchemaVersion=1.7.48
SchemaVersion=1.7.49

15. Apr 2025: v1.7.49

Check failure on line 28 in schema/PACK.xsd

View workflow job for this annotation

GitHub Actions / Validate pack schema

Change history not updated, should contain '14. April 2025: v1.7.49'!
- deprecate values 'DP' and 'ACCESS_AP' from 'type' attribute in element 'datapatch'
08. Apr 2025: v1.7.48
- add 'HPROT' and 'SPROT' attributes to 'accessportV1' and 'accessportV2' element
01. Apr 2025: v1.7.47
Expand Down Expand Up @@ -250,7 +252,7 @@

-->

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

<!-- NonNegativeInteger specifies the format in which numbers are represented in hexadecimal or decimal format -->
<xs:simpleType name="NonNegativeInteger">
Expand Down Expand Up @@ -661,10 +663,9 @@
<!-- DataPatchAccessTypeEnum enumeration type -->
<xs:simpleType name="DataPatchAccessTypeEnum">
<xs:restriction base="xs:token">
<xs:enumeration value="DP" />
<xs:enumeration value="AP" />
<xs:enumeration value="ACCESS_AP" />
<xs:enumeration value="Mem" />
<!-- removed in v1.7.49: "ACCESS_AP" and "DP" -->
</xs:restriction>
</xs:simpleType>

Expand Down
Loading