code
stringlengths
1
1.05M
repo_name
stringlengths
6
83
path
stringlengths
3
242
language
stringclasses
222 values
license
stringclasses
20 values
size
int64
1
1.05M
var cookie_namespace = 'doxygen'; var sidenav,navtree,content,header; function readCookie(cookie) { var myCookie = cookie_namespace+"_"+cookie+"="; if (document.cookie) { var index = document.cookie.indexOf(myCookie); if (index != -1) { var valStart = index + myCookie.length; var valEnd = document.cookie.indexOf(";", valStart); if (valEnd == -1) { valEnd = document.cookie.length; } var val = document.cookie.substring(valStart, valEnd); return val; } } return 0; } function writeCookie(cookie, val, expiration) { if (val==undefined) return; if (expiration == null) { var date = new Date(); date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week expiration = date.toGMTString(); } document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; } function resizeWidth() { var windowWidth = $(window).width() + "px"; var sidenavWidth = $(sidenav).outerWidth(); content.css({marginLeft:parseInt(sidenavWidth)+"px"}); writeCookie('width',sidenavWidth, null); } function restoreWidth(navWidth) { var windowWidth = $(window).width() + "px"; content.css({marginLeft:parseInt(navWidth)+6+"px"}); sidenav.css({width:navWidth + "px"}); } function resizeHeight() { var headerHeight = header.outerHeight(); var footerHeight = footer.outerHeight(); var windowHeight = $(window).height() - headerHeight - footerHeight; content.css({height:windowHeight + "px"}); navtree.css({height:windowHeight + "px"}); sidenav.css({height:windowHeight + "px",top: headerHeight+"px"}); } function initResizable() { header = $("#top"); sidenav = $("#side-nav"); content = $("#doc-content"); navtree = $("#nav-tree"); footer = $("#nav-path"); $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); $(window).resize(function() { resizeHeight(); }); var width = readCookie('width'); if (width) { restoreWidth(width); } else { resizeWidth(); } resizeHeight(); var url = location.href; var i=url.indexOf("#"); if (i>=0) window.location.hash=url.substr(i); var _preventDefault = function(evt) { evt.preventDefault(); }; $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); $(document).bind('touchmove',function(e){ var device = navigator.userAgent.toLowerCase(); var ios = device.match(/(iphone|ipod|ipad)/); if (ios) { try { var target = e.target; while (target) { if ($(target).css('-webkit-overflow-scrolling')=='touch') return; target = target.parentNode; } e.preventDefault(); } catch(err) { e.preventDefault(); } } }); }
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/resize.js
JavaScript
apache-2.0
2,800
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>CMSIS-SVD Schema File</title> <title>CMSIS-SVD: CMSIS-SVD Schema File</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('schema_1_2_gr.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">CMSIS-SVD Schema File </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><pre class="fragment">&lt;?xml version="1.0" encoding="UTF-8"?&gt; &lt;!-- Copyright (c) 2013-2016 ARM Limited. All rights reserved. SPDX-License-Identifier: Apache-2.0 Licensed under the Apache License, Version 2.0 (the License); you may not use this file except in compliance with the License. You may obtain a copy of the License at www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an AS IS BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. $Date: 04. September 2018 $Revision: 1.3.5 Version 1.3.5: - add CM35P as enumeration value for cpuNameType. Version 1.3.4: - add dspPresent element to cpuType as SIMD instructions became optional for new processors. Version 1.3.3: - update file header to Apache 2.0 License - add dimableIdentifierType, as a copy of previous identifierType adding "%s", - update identifierType to only allow names without %s included. - remove enumerationNameType. - add headerEnumName to enumerationType and to dimArrayIndexType for peripheral arrays overwriting hierarchically generated names - add dimName to dimElementGroup. Only valid in &lt;cluster&gt; context, ignored otherwise. Version 1.3.2: adding dimIndexArray to peripheral-, cluster- and register-array to describe enumeration of array indices. Version 1.3.1: fixed peripheral name element type to identifierType to support %s for peripheral arrays added optional protection element to addressBlockType and added p=privileged Version 1.3: added dim to peripherals to describe an array of peripherals. added nesting of clusters to support hierarchical register structures. added protection element as part of the registerPropertiesGroup indicating special permissions are required for accessing a register. CPU Section extended with description of the Secure Attribution Unit. Version 1.2: Cortex-M7 support items have been added as optional tags for the device header file generation: fpuDP, icachePresent, dcachePresent, itcmPresent, dtcmPresent Version 1.1: For backward compatibility all additional tags have been made optional. Extensions may be mandatory for successful device header file generation Other changes are related to some restructuring of the schema. Note that the memory section has been removed since this would limit the reuse of descriptions for a series of devices. --&gt; &lt;xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="qualified" version="1.3"&gt; &lt;!-- stringType requires a none empty string of a least one character length --&gt; &lt;xs:simpleType name="stringType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:minLength value="1"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;xs:simpleType name="descriptionStringType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="[\p{IsBasicLatin}\p{IsLatin-1Supplement}]*" /&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- cpuType specifies a selection of Cortex-M and Secure-Cores. This list will get extended as new processors are released --&gt; &lt;xs:simpleType name="cpuNameType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="CM0"/&gt; &lt;xs:enumeration value="CM0PLUS"/&gt; &lt;xs:enumeration value="CM0+"/&gt; &lt;xs:enumeration value="CM1"/&gt; &lt;xs:enumeration value="SC000"/&gt; &lt;xs:enumeration value="CM23"/&gt; &lt;xs:enumeration value="CM3"/&gt; &lt;xs:enumeration value="CM33"/&gt; &lt;xs:enumeration value="CM35P"/&gt; &lt;xs:enumeration value="SC300"/&gt; &lt;xs:enumeration value="CM4"/&gt; &lt;xs:enumeration value="CM7"/&gt; &lt;xs:enumeration value="ARMV8MML"/&gt; &lt;xs:enumeration value="ARMV8MBL"/&gt; &lt;xs:enumeration value="CA5"/&gt; &lt;xs:enumeration value="CA7"/&gt; &lt;xs:enumeration value="CA8"/&gt; &lt;xs:enumeration value="CA9"/&gt; &lt;xs:enumeration value="CA15"/&gt; &lt;xs:enumeration value="CA17"/&gt; &lt;xs:enumeration value="CA53"/&gt; &lt;xs:enumeration value="CA57"/&gt; &lt;xs:enumeration value="CA72"/&gt; &lt;xs:enumeration value="other"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- revisionType specifies the CPU revision format as defined by ARM (rNpM) --&gt; &lt;xs:simpleType name="revisionType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="r[0-9]*p[0-9]*"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- EndianType pre-defines the tokens for specifying the endianess of the device --&gt; &lt;xs:simpleType name="endianType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="little"/&gt; &lt;xs:enumeration value="big"/&gt; &lt;xs:enumeration value="selectable"/&gt; &lt;xs:enumeration value="other"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- dataType pre-defines the tokens in line with CMSIS data type definitions --&gt; &lt;xs:simpleType name="dataTypeType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="uint8_t"/&gt; &lt;xs:enumeration value="uint16_t"/&gt; &lt;xs:enumeration value="uint32_t"/&gt; &lt;xs:enumeration value="uint64_t"/&gt; &lt;xs:enumeration value="int8_t"/&gt; &lt;xs:enumeration value="int16_t"/&gt; &lt;xs:enumeration value="int32_t"/&gt; &lt;xs:enumeration value="int64_t"/&gt; &lt;xs:enumeration value="uint8_t *"/&gt; &lt;xs:enumeration value="uint16_t *"/&gt; &lt;xs:enumeration value="uint32_t *"/&gt; &lt;xs:enumeration value="uint64_t *"/&gt; &lt;xs:enumeration value="int8_t *"/&gt; &lt;xs:enumeration value="int16_t *"/&gt; &lt;xs:enumeration value="int32_t *"/&gt; &lt;xs:enumeration value="int64_t *"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- nvicPrioBitsType specifies the integer value range for the number of bits used in NVIC to encode priority levels --&gt; &lt;xs:simpleType name="nvicPrioBitsType"&gt; &lt;xs:restriction base="xs:integer"&gt; &lt;xs:minInclusive value="2"/&gt; &lt;xs:maxInclusive value="8"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- dimableIdentifierType specifies the subset and sequence of characters used for specifying identifiers that may contain %s from dim. --&gt; &lt;!-- this is particularly important as these are used in ANSI C Structures during the device header file generation --&gt; &lt;xs:simpleType name="dimableIdentifierType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="((%s)|(%s)[_A-Za-z]{1}[_A-Za-z0-9]*)|([_A-Za-z]{1}[_A-Za-z0-9]*(\[%s\])?)|([_A-Za-z]{1}[_A-Za-z0-9]*(%s)?[_A-Za-z0-9]*)"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- identifierType specifies the subset and sequence of characters used for specifying identifiers that must not contain %s from dim. --&gt; &lt;!-- this is particularly important as these are used in ANSI C Structures during the device header file generation --&gt; &lt;xs:simpleType name="identifierType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="[_A-Za-z0-9]*"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- V1.3: Protection Access Attribute Strings --&gt; &lt;xs:simpleType name="protectionStringType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;!-- s = Secure --&gt; &lt;!-- n = Non-secure --&gt; &lt;!-- p = Privileged --&gt; &lt;xs:pattern value="[snp]"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- V1.3: SAU Access Type --&gt; &lt;xs:simpleType name="sauAccessType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;!-- c = non-secure Callable / Secure --&gt; &lt;!-- n = Non-secure --&gt; &lt;xs:pattern value="[cn]"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- dimIndexType specifies the subset and sequence of characters used for specifying the sequence of indices in register arrays --&gt; &lt;xs:simpleType name="dimIndexType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="[0-9]+\-[0-9]+|[A-Z]-[A-Z]|[_0-9a-zA-Z]+(,\s*[_0-9a-zA-Z]+)+"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- scaledNonNegativeInteger specifies the format in which numbers are represented in hexadecimal or decimal format --&gt; &lt;xs:simpleType name="scaledNonNegativeInteger"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="[+]?(0x|0X|#)?[0-9a-fA-F]+[kmgtKMGT]?"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- enumeratedValueDataType specifies the number formats for the values in enumeratedValues --&gt; &lt;xs:simpleType name="enumeratedValueDataType"&gt; &lt;xs:restriction base="xs:string"&gt; &lt;xs:pattern value="[+]?(((0x|0X)[0-9a-fA-F]+)|([0-9]+)|((#|0b)[01xX]+))"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- accessType specfies the pre-defined tokens for the available accesses --&gt; &lt;xs:simpleType name="accessType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="read-only"/&gt; &lt;xs:enumeration value="write-only"/&gt; &lt;xs:enumeration value="read-write"/&gt; &lt;xs:enumeration value="writeOnce"/&gt; &lt;xs:enumeration value="read-writeOnce"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- modifiedWriteValuesType specifies the pre-defined tokens for the write side effects --&gt; &lt;xs:simpleType name="modifiedWriteValuesType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="oneToClear"/&gt; &lt;xs:enumeration value="oneToSet"/&gt; &lt;xs:enumeration value="oneToToggle"/&gt; &lt;xs:enumeration value="zeroToClear"/&gt; &lt;xs:enumeration value="zeroToSet"/&gt; &lt;xs:enumeration value="zeroToToggle"/&gt; &lt;xs:enumeration value="clear"/&gt; &lt;xs:enumeration value="set"/&gt; &lt;xs:enumeration value="modify"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- readAction type specifies the pre-defined tokens for read side effects --&gt; &lt;xs:simpleType name="readActionType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="clear"/&gt; &lt;xs:enumeration value="set"/&gt; &lt;xs:enumeration value="modify"/&gt; &lt;xs:enumeration value="modifyExternal"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- enumUsageType specifies the pre-defined tokens for selecting what access types an enumeratedValues set is associated with --&gt; &lt;xs:simpleType name="enumUsageType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="read"/&gt; &lt;xs:enumeration value="write"/&gt; &lt;xs:enumeration value="read-write"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- bitRangeType specifies the bit numbers to be restricted values from 0 - 69 --&gt; &lt;xs:simpleType name="bitRangeType"&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:pattern value="\[([0-4])?[0-9]:([0-4])?[0-9]\]"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;!-- writeContraintType specifies how to describe the restriction of the allowed values that can be written to a resource --&gt; &lt;xs:complexType name="writeConstraintType"&gt; &lt;xs:choice&gt; &lt;xs:element name="writeAsRead" type="xs:boolean"/&gt; &lt;xs:element name="useEnumeratedValues" type="xs:boolean"/&gt; &lt;xs:element name="range"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="minimum" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="maximum" type="scaledNonNegativeInteger"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:choice&gt; &lt;/xs:complexType&gt; &lt;!-- addressBlockType specifies the elements to describe an address block --&gt; &lt;xs:complexType name="addressBlockType"&gt; &lt;xs:sequence&gt; &lt;xs:element name="offset" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="size" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="usage"&gt; &lt;xs:simpleType&gt; &lt;xs:restriction base="xs:token"&gt; &lt;xs:enumeration value="registers"/&gt; &lt;xs:enumeration value="buffer"/&gt; &lt;xs:enumeration value="reserved"/&gt; &lt;/xs:restriction&gt; &lt;/xs:simpleType&gt; &lt;/xs:element&gt; &lt;!-- Version 1.3.2: optional access protection for an address block s=secure n=non-secure p=privileged --&gt; &lt;xs:element name="protection" type="protectionStringType" minOccurs="0"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;!-- interruptType specifies how to describe an interrupt associated with a peripheral --&gt; &lt;xs:complexType name="interruptType"&gt; &lt;xs:sequence&gt; &lt;xs:element name="name" type="stringType"/&gt; &lt;xs:element name="description" type="xs:string" minOccurs="0"/&gt; &lt;xs:element name="value" type="xs:integer"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;!-- register properties group specifies register size, access permission and reset value this is used in multiple locations. Settings are inherited downstream. --&gt; &lt;xs:group name="registerPropertiesGroup"&gt; &lt;xs:sequence&gt; &lt;xs:element name="size" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;xs:element name="access" type="accessType" minOccurs="0"/&gt; &lt;!-- V 1.3: extended register access protection --&gt; &lt;xs:element name="protection" type="protectionStringType" minOccurs="0"/&gt; &lt;xs:element name="resetValue" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;xs:element name="resetMask" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;/xs:sequence&gt; &lt;/xs:group&gt; &lt;!-- bitRangeLsbMsbStyle specifies the bit position of a field within a register by specifying the least significant and the most significant bit position --&gt; &lt;xs:group name="bitRangeLsbMsbStyle"&gt; &lt;xs:sequence&gt; &lt;xs:element name="lsb" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="msb" type="scaledNonNegativeInteger"/&gt; &lt;/xs:sequence&gt; &lt;/xs:group&gt; &lt;!-- bitRangeOffsetWidthStyle specifies the bit position of a field within a register by specifying the least significant bit position and the bitWidth of the field --&gt; &lt;xs:group name="bitRangeOffsetWidthStyle"&gt; &lt;xs:sequence&gt; &lt;xs:element name="bitOffset" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="bitWidth" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;/xs:sequence&gt; &lt;/xs:group&gt; &lt;!-- dimElementGroup specifies the number of array elements (dim), the address offset between to consecutive array elements and an a comma seperated list of strings being used for identifying each element in the array --&gt; &lt;xs:group name="dimElementGroup"&gt; &lt;xs:sequence&gt; &lt;xs:element name="dim" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="dimIncrement" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="dimIndex" type="dimIndexType" minOccurs="0"/&gt; &lt;xs:element name="dimName" type="identifierType" minOccurs="0"/&gt; &lt;xs:element name="dimArrayIndex" type="dimArrayIndexType" minOccurs="0"/&gt; &lt;/xs:sequence&gt; &lt;/xs:group&gt; &lt;xs:complexType name="cpuType"&gt; &lt;xs:sequence&gt; &lt;!-- V1.1: ARM processor name: Cortex-Mx / SCxxx --&gt; &lt;xs:element name="name" type="cpuNameType"/&gt; &lt;!-- V1.1: ARM defined revision of the cpu --&gt; &lt;xs:element name="revision" type="revisionType"/&gt; &lt;!-- V1.1: Endian specifies the endianess of the processor/device --&gt; &lt;xs:element name="endian" type="endianType"/&gt; &lt;!-- V1.1: mpuPresent specifies whether or not a memory protection unit is physically present --&gt; &lt;xs:element name="mpuPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.1: fpuPresent specifies whether or not a floating point hardware unit is physically present --&gt; &lt;xs:element name="fpuPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.2: fpuDP specifies a double precision floating point hardware unit is physically present--&gt; &lt;xs:element name="fpuDP" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.3: dspPresent specifies whether the optional SIMD instructions are supported by processor --&gt; &lt;xs:element name="dspPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.2: icachePresent specifies that an instruction cache is physically present--&gt; &lt;xs:element name="icachePresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.2: dcachePresent specifies that a data cache is physically present--&gt; &lt;xs:element name="dcachePresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.2: itcmPresent specifies that an instruction tightly coupled memory is physically present--&gt; &lt;xs:element name="itcmPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.2: dtcmPresent specifies that an data tightly coupled memory is physically present--&gt; &lt;xs:element name="dtcmPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.1: vtorPresent is used for Cortex-M0+ based devices only. It indicates whether the Vector --&gt; &lt;!-- Table Offset Register is implemented in the device or not --&gt; &lt;xs:element name="vtorPresent" type="xs:boolean" minOccurs="0"/&gt; &lt;!-- V1.1: nvicPrioBits specifies the number of bits used by the Nested Vectored Interrupt Controller --&gt; &lt;!-- for defining the priority level = # priority levels --&gt; &lt;xs:element name="nvicPrioBits" type="scaledNonNegativeInteger"/&gt; &lt;!-- V1.1: vendorSystickConfig is set true if a custom system timer is implemented in the device --&gt; &lt;!-- instead of the ARM specified SysTickTimer --&gt; &lt;xs:element name="vendorSystickConfig" type="xs:boolean"/&gt; &lt;!-- V1.3: reports the total number of interrupts implemented by the device (optional) --&gt; &lt;xs:element name="deviceNumInterrupts" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;!-- V1.3: sauRegions specifies the available number of address regions --&gt; &lt;!-- if not specified a value of zero is assumed --&gt; &lt;xs:element name="sauNumRegions" type="scaledNonNegativeInteger" minOccurs="0"/&gt; &lt;!-- V1.3: SAU Regions Configuration (if fully or partially predefined) --&gt; &lt;xs:element name="sauRegionsConfig" minOccurs="0"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="region" minOccurs="0" maxOccurs="unbounded"&gt; &lt;!-- addressBlockType specifies the elements to describe an address block --&gt; &lt;xs:complexType&gt; &lt;xs:sequence minOccurs="1" maxOccurs="unbounded"&gt; &lt;xs:element name="base" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="limit" type="scaledNonNegativeInteger"/&gt; &lt;xs:element name="access" type="sauAccessType"/&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="enabled" type="xs:boolean" use="optional" default="true"/&gt; &lt;xs:attribute name="name" type="xs:string" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="enabled" type="xs:boolean" use="optional" default="true"/&gt; &lt;xs:attribute name="protectionWhenDisabled" type="protectionStringType" use="optional" default="s"/&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="enumeratedValueType"&gt; &lt;xs:sequence&gt; &lt;!-- name is a ANSI C indentifier representing the value (C Enumeration) --&gt; &lt;xs:element name="name" type="identifierType"/&gt; &lt;!-- description contains the details about the semantics/behavior specified by this value --&gt; &lt;xs:element name="description" type="stringType" minOccurs="0"/&gt; &lt;xs:choice&gt; &lt;xs:element name="value" type="enumeratedValueDataType"/&gt; &lt;!-- isDefault specifies the name and description for all values that are not specifically described individually --&gt; &lt;xs:element name="isDefault" type="xs:boolean"/&gt; &lt;/xs:choice&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="enumerationType"&gt; &lt;xs:sequence&gt; &lt;!-- name specfies a reference to this enumeratedValues section for reuse purposes this name does not appear in the System Viewer nor the Header File. --&gt; &lt;xs:element name="name" type="identifierType" minOccurs="0"/&gt; &lt;!-- overrides the hierarchical enumeration type in the device header file. User is responsible for uniqueness across description --&gt; &lt;xs:element name="headerEnumName" type="identifierType" minOccurs="0"/&gt; &lt;!-- usage specifies whether this enumeration is to be used for read or write or (read and write) accesses --&gt; &lt;xs:element name="usage" type="enumUsageType" minOccurs="0"/&gt; &lt;!-- enumeratedValue derivedFrom=&lt;identifierType&gt; --&gt; &lt;xs:element name="enumeratedValue" type="enumeratedValueType" minOccurs="1" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="derivedFrom" type="identifierType" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="dimArrayIndexType"&gt; &lt;xs:sequence&gt; &lt;xs:element name="headerEnumName" type="identifierType" minOccurs="0"/&gt; &lt;xs:element name="enumeratedValue" type="enumeratedValueType" minOccurs="1" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="fieldType"&gt; &lt;xs:sequence&gt; &lt;xs:group ref="dimElementGroup" minOccurs="0"/&gt; &lt;!-- name specifies a field's name. The System Viewer and the device header file will use the name of the field as identifier --&gt; &lt;xs:element name="name" type="dimableIdentifierType"/&gt; &lt;!-- description contains reference manual level information about the function and options of a field --&gt; &lt;xs:element name="description" type="stringType" minOccurs="0"/&gt; &lt;!-- alternative specifications of the bit position of the field within the register --&gt; &lt;xs:choice minOccurs="1" maxOccurs="1"&gt; &lt;!-- bit field described by lsb followed by msb tag --&gt; &lt;xs:group ref="bitRangeLsbMsbStyle"/&gt; &lt;!-- bit field described by bit offset relative to Bit0 + bit width of field --&gt; &lt;xs:group ref="bitRangeOffsetWidthStyle"/&gt; &lt;!-- bit field described by [&lt;msb&gt;:&lt;lsb&gt;] --&gt; &lt;xs:element name="bitRange" type="bitRangeType"/&gt; &lt;/xs:choice&gt; &lt;!-- access describes the predefined permissions for the field. --&gt; &lt;xs:element name="access" type="accessType" minOccurs="0"/&gt; &lt;!-- predefined description of write side effects --&gt; &lt;xs:element name="modifiedWriteValues" type="modifiedWriteValuesType" minOccurs="0"/&gt; &lt;!-- writeContstraint specifies the subrange of allowed values --&gt; &lt;xs:element name="writeConstraint" type="writeConstraintType" minOccurs="0"/&gt; &lt;!-- readAction specifies the read side effects. --&gt; &lt;xs:element name="readAction" type="readActionType" minOccurs="0"/&gt; &lt;!-- enumeratedValues derivedFrom=&lt;identifierType&gt; --&gt; &lt;xs:element name="enumeratedValues" type="enumerationType" minOccurs="0" maxOccurs="2"&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="derivedFrom" type="dimableIdentifierType" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="fieldsType"&gt; &lt;xs:sequence&gt; &lt;!-- field derivedFrom=&lt;identifierType&gt; --&gt; &lt;xs:element name="field" type="fieldType" minOccurs="1" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="registerType"&gt; &lt;xs:sequence&gt; &lt;xs:group ref="dimElementGroup" minOccurs="0"/&gt; &lt;!-- name specifies the name of the register. The register name is used by System Viewer and device header file generator to represent a register --&gt; &lt;xs:element name="name" type="dimableIdentifierType"/&gt; &lt;!-- display name specifies a register name without the restritions of an ANSIS C identifier. The use of this tag is discouraged because it does not allow consistency between the System View and the device header file. --&gt; &lt;xs:element name="displayName" type="stringType" minOccurs="0"/&gt; &lt;!-- description contains a reference manual level description about the register and it's purpose --&gt; &lt;xs:element name="description" type="stringType" minOccurs="0"/&gt; &lt;xs:choice&gt; &lt;!-- alternateGroup specifies the identifier of the subgroup a register belongs to. This is useful if a register has a different description per mode but a single name --&gt; &lt;xs:element name="alternateGroup" type="identifierType" minOccurs="0"/&gt; &lt;!-- V1.1: alternateRegister specifies an alternate register description for an address that is already fully described. In this case the register name must be unique within the peripheral --&gt; &lt;xs:element name="alternateRegister" type="dimableIdentifierType" minOccurs="0"/&gt; &lt;/xs:choice&gt; &lt;!-- addressOffset describes the address of the register relative to the baseOffset of the peripheral --&gt; &lt;xs:element name="addressOffset" type="scaledNonNegativeInteger"/&gt; &lt;!-- registerPropertiesGroup elements specify the default values for register size, access permission and reset value. These default values are inherited to all fields contained in this register --&gt; &lt;xs:group ref="registerPropertiesGroup" minOccurs="0"/&gt; &lt;!-- V1.1: dataType specifies a CMSIS compliant native dataType for a register (i.e. signed, unsigned, pointer) --&gt; &lt;xs:element name="dataType" type="dataTypeType" minOccurs="0"/&gt; &lt;!-- modifiedWriteValues specifies the write side effects --&gt; &lt;xs:element name="modifiedWriteValues" type="modifiedWriteValuesType" minOccurs="0"/&gt; &lt;!-- writeConstraint specifies the subset of allowed write values --&gt; &lt;xs:element name="writeConstraint" type="writeConstraintType" minOccurs="0"/&gt; &lt;!-- readAcction specifies the read side effects --&gt; &lt;xs:element name="readAction" type="readActionType" minOccurs="0"/&gt; &lt;!-- fields section contains all fields that belong to this register --&gt; &lt;xs:element name="fields" type="fieldsType" minOccurs="0" maxOccurs="1"/&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="derivedFrom" type="dimableIdentifierType" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;!-- V1.1: A cluster is a set of registers that are composed into a C data structure in the device header file --&gt; &lt;xs:complexType name="clusterType"&gt; &lt;xs:sequence&gt; &lt;xs:group ref="dimElementGroup" minOccurs="0"/&gt; &lt;xs:element name="name" type="dimableIdentifierType"/&gt; &lt;xs:element name="description" type="xs:string"/&gt; &lt;!-- V1.1: alternateCluster specifies an alternative description for a cluster address range that is already fully described. In this case the cluster name must be unique within the peripheral --&gt; &lt;xs:element name="alternateCluster" type="dimableIdentifierType" minOccurs="0"/&gt; &lt;!-- V1.1: headerStructName specifies the name for the cluster structure typedef used in the device header generation instead of the cluster name --&gt; &lt;xs:element name="headerStructName" type="identifierType" minOccurs="0"/&gt; &lt;xs:element name="addressOffset" type="scaledNonNegativeInteger"/&gt; &lt;!-- registerPropertiesGroup elements specify the default values for register size, access permission and reset value. These default values are inherited to all registers contained in this peripheral --&gt; &lt;xs:group ref="registerPropertiesGroup" minOccurs="0"/&gt; &lt;xs:sequence&gt; &lt;xs:choice minOccurs="1" maxOccurs="unbounded"&gt; &lt;xs:element name="register" type="registerType" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;!-- 1.3: nesting of cluster is supported --&gt; &lt;xs:element name="cluster" type="clusterType" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;/xs:choice&gt; &lt;/xs:sequence&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="derivedFrom" type="dimableIdentifierType" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;!-- the registers section can have an arbitrary list of cluster and register sections --&gt; &lt;xs:complexType name="registersType"&gt; &lt;xs:choice minOccurs="1" maxOccurs="unbounded"&gt; &lt;xs:element name="cluster" type="clusterType"/&gt; &lt;xs:element name="register" type="registerType"/&gt; &lt;/xs:choice&gt; &lt;/xs:complexType&gt; &lt;xs:complexType name="peripheralType"&gt; &lt;xs:sequence&gt; &lt;!-- 1.3: specify uni-dimensional array of peripheral - requires name="&lt;name&gt;[%s]" --&gt; &lt;xs:group ref="dimElementGroup" minOccurs="0"/&gt; &lt;!-- name specifies the name of a peripheral. This name is used for the System View and device header file --&gt; &lt;xs:element name="name" type="dimableIdentifierType"/&gt; &lt;!-- version specifies the version of the peripheral descriptions --&gt; &lt;xs:element name="version" type="stringType" minOccurs="0"/&gt; &lt;!-- description provides a high level functional description of the peripheral --&gt; &lt;xs:element name="description" type="stringType" minOccurs="0"/&gt; &lt;!-- V1.1: alternatePeripheral specifies an alternative description for an address range that is already fully by a peripheral described. In this case the peripheral name must be unique within the device description --&gt; &lt;xs:element name="alternatePeripheral" type="dimableIdentifierType" minOccurs="0"/&gt; &lt;!-- groupName assigns this peripheral to a group of peripherals. This is only used bye the System View --&gt; &lt;xs:element name="groupName" type="xs:Name" minOccurs="0"/&gt; &lt;!-- prependToName specifies a prefix that is placed in front of each register name of this peripheral. The device header file will show the registers in a C-Struct of the peripheral without the prefix. --&gt; &lt;xs:element name="prependToName" type="identifierType" minOccurs="0"/&gt; &lt;!-- appendToName is a postfix that is appended to each register name of this peripheral. The device header file will sho the registers in a C-Struct of the peripheral without the postfix --&gt; &lt;xs:element name="appendToName" type="identifierType" minOccurs="0"/&gt; &lt;!-- V1.1: headerStructName specifies the name for the peripheral structure typedef used in the device header generation instead of the peripheral name --&gt; &lt;xs:element name="headerStructName" type="dimableIdentifierType" minOccurs="0"/&gt; &lt;!-- disableCondition contains a logical expression based on constants and register or bit-field values if the condition is evaluated to true, the peripheral display will be disabled --&gt; &lt;xs:element name="disableCondition" type="stringType" minOccurs="0"/&gt; &lt;!-- baseAddress specifies the absolute base address of a peripheral. For derived peripherals it is mandatory to specify a baseAddress. --&gt; &lt;xs:element name="baseAddress" type="scaledNonNegativeInteger"/&gt; &lt;!-- registerPropertiesGroup elements specify the default values for register size, access permission and reset value. These default values are inherited to all registers contained in this peripheral --&gt; &lt;xs:group ref="registerPropertiesGroup" minOccurs="0"/&gt; &lt;!-- addressBlock specifies one or more address ranges that are assigned exclusively to this peripheral. derived peripherals may have no addressBlock, however none-derived peripherals are required to specify at least one address block --&gt; &lt;xs:element name="addressBlock" type="addressBlockType" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;!-- interrupt specifies can specify one or more interrtupts by name, description and value --&gt; &lt;xs:element name="interrupt" type="interruptType" minOccurs="0" maxOccurs="unbounded"/&gt; &lt;!-- registers section contains all registers owned by the peripheral. In case a peripheral gets derived it does not have its own registers section, hence this section is optional. A unique peripheral without a registers section is not allowed --&gt; &lt;xs:element name="registers" type="registersType" minOccurs="0" maxOccurs="1"&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="derivedFrom" type="dimableIdentifierType" use="optional"/&gt; &lt;/xs:complexType&gt; &lt;!-- ==================================================== --&gt; &lt;!-- The top level element of a description is the device --&gt; &lt;!-- ==================================================== --&gt; &lt;xs:element name="device" nillable="true"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;!-- V1.1: Vendor Name --&gt; &lt;xs:element name="vendor" type="stringType" minOccurs="0"/&gt; &lt;!-- V1.1: Vendor ID - a short name for referring to the vendor (e.g. Texas Instruments = TI) --&gt; &lt;xs:element name="vendorID" type="identifierType" minOccurs="0"/&gt; &lt;!-- name specifies the device name being described --&gt; &lt;xs:element name="name" type="identifierType"/&gt; &lt;!-- V1.1: series specifies the device series or family name --&gt; &lt;xs:element name="series" type="stringType" minOccurs="0"/&gt; &lt;!-- version specifies the version of the device description --&gt; &lt;xs:element name="version" type="stringType"/&gt; &lt;!-- description is a string describing the device features (e.g. memory size, peripherals, etc.) --&gt; &lt;xs:element name="description" type="stringType"/&gt; &lt;!-- V1.1: licenseText specifies the file header section to be included in any derived file --&gt; &lt;xs:element name="licenseText" type="stringType" minOccurs="0"/&gt; &lt;!-- V1.1: cpu specifies the details of the processor included in the device --&gt; &lt;xs:element name="cpu" type="cpuType" minOccurs="0"/&gt; &lt;!-- V1.1: the tag specifies the filename without extension of the CMSIS System Device include file. This tag is used by the header file generator for customizing the include statement referencing the CMSIS system file within the CMSIS device header file. By default the filename is "system_&lt;device.name&gt;" In cases a device series shares a single system header file, the name of the series shall be used instead of the individual device name. --&gt; &lt;xs:element name="headerSystemFilename" type="identifierType" minOccurs="0"/&gt; &lt;!-- V1.1: headerDefinitionPrefix specifies the string being prepended to all names of types defined in generated device header file --&gt; &lt;xs:element name="headerDefinitionsPrefix" type="identifierType" minOccurs="0"/&gt; &lt;!-- addressUnitBits specifies the size of the minimal addressable unit in bits --&gt; &lt;xs:element name="addressUnitBits" type="scaledNonNegativeInteger"/&gt; &lt;!-- width specifies the number of bits for the maximum single transfer size allowed by the bus interface. This sets the maximum size of a single register that can be defined for an address space --&gt; &lt;xs:element name="width" type="scaledNonNegativeInteger"/&gt; &lt;!-- registerPropertiesGroup elements specify the default values for register size, access permission and reset value --&gt; &lt;xs:group ref="registerPropertiesGroup" minOccurs="0"/&gt; &lt;!-- peripherals is containing all peripherals --&gt; &lt;xs:element name="peripherals"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:element name="peripheral" type="peripheralType" minOccurs="1" maxOccurs="unbounded"/&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;!-- Vendor Extensions: this section captures custom extensions. This section will be ignored by default --&gt; &lt;xs:element name="vendorExtensions" minOccurs="0" maxOccurs="1"&gt; &lt;xs:complexType&gt; &lt;xs:sequence&gt; &lt;xs:any namespace="##any" processContents="lax" minOccurs="0" maxOccurs="unbounded"&gt; &lt;/xs:any&gt; &lt;/xs:sequence&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:sequence&gt; &lt;xs:attribute name="schemaVersion" type="xs:decimal" use="required"/&gt; &lt;/xs:complexType&gt; &lt;/xs:element&gt; &lt;/xs:schema&gt; &lt;!-- END OF FILE --&gt;</pre> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/schema_1_2_gr.html
HTML
apache-2.0
44,457
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_0.html
HTML
apache-2.0
1,011
var searchData= [ ['cmsis_2dsvd_20schema_20file',['CMSIS-SVD Schema File',['../schema_1_2_gr.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_0.js
JavaScript
apache-2.0
112
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_1.html
HTML
apache-2.0
1,011
var searchData= [ ['file_20conventions',['File Conventions',['../svd_xml_conventions_gr.html',1,'svd_Format_pg']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_1.js
JavaScript
apache-2.0
120
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_2.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_2.html
HTML
apache-2.0
1,011
var searchData= [ ['revision_20history',['Revision History',['../svd_revisionHistory.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_2.js
JavaScript
apache-2.0
104
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_3.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_3.html
HTML
apache-2.0
1,011
var searchData= [ ['special_20elements',['Special Elements',['../elem_special.html',1,'svd_Format_pg']]], ['system_20view_20description',['System View Description',['../index.html',1,'']]], ['svd_20file_20example',['SVD File Example',['../svd_Example_pg.html',1,'svd_Format_pg']]], ['svd_20description_20_28_2a_2esvd_29_20format',['SVD Description (*.svd) Format',['../svd_Format_pg.html',1,'']]], ['svdconv_2eexe',['SVDConv.exe',['../svd_SVDConv_pg.html',1,'']]], ['svd_20file_20validation_20and_20usage',['SVD File Validation and Usage',['../svd_validate_file_pg.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/all_3.js
JavaScript
apache-2.0
594
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="NoMatches">No Matches</div> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/nomatches.html
HTML
apache-2.0
461
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_0.html
HTML
apache-2.0
1,013
var searchData= [ ['cmsis_2dsvd_20schema_20file',['CMSIS-SVD Schema File',['../schema_1_2_gr.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_0.js
JavaScript
apache-2.0
112
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_1.html
HTML
apache-2.0
1,013
var searchData= [ ['file_20conventions',['File Conventions',['../svd_xml_conventions_gr.html',1,'svd_Format_pg']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_1.js
JavaScript
apache-2.0
120
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_2.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_2.html
HTML
apache-2.0
1,013
var searchData= [ ['revision_20history',['Revision History',['../svd_revisionHistory.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_2.js
JavaScript
apache-2.0
104
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_3.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_3.html
HTML
apache-2.0
1,013
var searchData= [ ['special_20elements',['Special Elements',['../elem_special.html',1,'svd_Format_pg']]], ['system_20view_20description',['System View Description',['../index.html',1,'']]], ['svd_20file_20example',['SVD File Example',['../svd_Example_pg.html',1,'svd_Format_pg']]], ['svd_20description_20_28_2a_2esvd_29_20format',['SVD Description (*.svd) Format',['../svd_Format_pg.html',1,'']]], ['svdconv_2eexe',['SVDConv.exe',['../svd_SVDConv_pg.html',1,'']]], ['svd_20file_20validation_20and_20usage',['SVD File Validation and Usage',['../svd_validate_file_pg.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/pages_3.js
JavaScript
apache-2.0
594
/*---------------- Search Box */ #FSearchBox { float: left; } #MSearchBox { white-space : nowrap; position: absolute; float: none; display: inline; margin-top: 8px; right: 0px; width: 170px; z-index: 102; background-color: white; } #MSearchBox .left { display:block; position:absolute; left:10px; width:20px; height:19px; background:url('search_l.png') no-repeat; background-position:right; } #MSearchSelect { display:block; position:absolute; width:20px; height:19px; } .left #MSearchSelect { left:4px; } .right #MSearchSelect { right:5px; } #MSearchField { display:block; position:absolute; height:19px; background:url('search_m.png') repeat-x; border:none; width:111px; margin-left:20px; padding-left:4px; color: #909090; outline: none; font: 9pt Arial, Verdana, sans-serif; } #FSearchBox #MSearchField { margin-left:15px; } #MSearchBox .right { display:block; position:absolute; right:10px; top:0px; width:20px; height:19px; background:url('search_r.png') no-repeat; background-position:left; } #MSearchClose { display: none; position: absolute; top: 4px; background : none; border: none; margin: 0px 4px 0px 0px; padding: 0px 0px; outline: none; } .left #MSearchClose { left: 6px; } .right #MSearchClose { right: 2px; } .MSearchBoxActive #MSearchField { color: #000000; } /*---------------- Search filter selection */ #MSearchSelectWindow { display: none; position: absolute; left: 0; top: 0; border: 1px solid #90A5CE; background-color: #F9FAFC; z-index: 1; padding-top: 4px; padding-bottom: 4px; -moz-border-radius: 4px; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); } .SelectItem { font: 8pt Arial, Verdana, sans-serif; padding-left: 2px; padding-right: 12px; border: 0px; } span.SelectionMark { margin-right: 4px; font-family: monospace; outline-style: none; text-decoration: none; } a.SelectItem { display: block; outline-style: none; color: #000000; text-decoration: none; padding-left: 6px; padding-right: 12px; } a.SelectItem:focus, a.SelectItem:active { color: #000000; outline-style: none; text-decoration: none; } a.SelectItem:hover { color: #FFFFFF; background-color: #3D578C; outline-style: none; text-decoration: none; cursor: pointer; display: block; } /*---------------- Search results window */ iframe#MSearchResults { width: 60ex; height: 15em; } #MSearchResultsWindow { display: none; position: absolute; left: 0; top: 0; border: 1px solid #000; background-color: #EEF1F7; } /* ----------------------------------- */ #SRIndex { clear:both; padding-bottom: 15px; } .SREntry { font-size: 10pt; padding-left: 1ex; } .SRPage .SREntry { font-size: 8pt; padding: 1px 5px; } body.SRPage { margin: 5px 2px; } .SRChildren { padding-left: 3ex; padding-bottom: .5em } .SRPage .SRChildren { display: none; } .SRSymbol { font-weight: bold; color: #425E97; font-family: Arial, Verdana, sans-serif; text-decoration: none; outline: none; } a.SRScope { display: block; color: #425E97; font-family: Arial, Verdana, sans-serif; text-decoration: none; outline: none; } a.SRSymbol:focus, a.SRSymbol:active, a.SRScope:focus, a.SRScope:active { text-decoration: underline; } span.SRScope { padding-left: 4px; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; } .SRResult { display: none; } DIV.searchresults { margin-left: 10px; margin-right: 10px; } /*---------------- External search page results */ .searchresult { background-color: #F0F3F8; } .pages b { color: white; padding: 5px 5px 3px 5px; background-image: url("../tab_a.png"); background-repeat: repeat-x; text-shadow: 0 1px 1px #000000; } .pages { line-height: 17px; margin-left: 4px; text-decoration: none; } .hl { font-weight: bold; } #searchresults { margin-bottom: 20px; } .searchpages { margin-top: 10px; }
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/search/search.css
CSS
apache-2.0
4,461
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>SVD File Example</title> <title>CMSIS-SVD: SVD File Example</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_Example_pg.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">SVD File Example </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><pre class="fragment">&lt;?xml version="1.0" encoding="utf-8"?&gt; &lt;!-- File naming: &lt;part/series name&gt;.svd --&gt; &lt;!-- Copyright (C) 2012-2014 ARM Limited. All rights reserved. Purpose: System Viewer Description (SVD) Example (Schema Version 1.1) This is a description of a none-existent and incomplete device for demonstration purposes only. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: - Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. - Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. - Neither the name of ARM nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL COPYRIGHT HOLDERS AND CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. --&gt; &lt;device schemaVersion="1.1" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="CMSIS-SVD.xsd" &gt; &lt;vendor&gt;ARM Ltd.&lt;/vendor&gt; &lt;!-- device vendor name --&gt; &lt;vendorID&gt;ARM&lt;/vendorID&gt; &lt;!-- device vendor short name --&gt; &lt;name&gt;ARM_Example&lt;/name&gt; &lt;!-- name of part--&gt; &lt;series&gt;ARMCM3&lt;/series&gt; &lt;!-- device series the device belongs to --&gt; &lt;version&gt;1.2&lt;/version&gt; &lt;!-- version of this description, adding CMSIS-SVD 1.1 tags --&gt; &lt;description&gt;ARM 32-bit Cortex-M3 Microcontroller based device, CPU clock up to 80MHz, etc. &lt;/description&gt; &lt;licenseText&gt; &lt;!-- this license text will appear in header file. \n force line breaks --&gt; ARM Limited (ARM) is supplying this software for use with Cortex-M\n processor based microcontroller, but can be equally used for other\n suitable processor architectures. This file can be freely distributed.\n Modifications to this file shall be clearly marked.\n \n THIS SOFTWARE IS PROVIDED "AS IS". NO WARRANTIES, WHETHER EXPRESS, IMPLIED\n OR STATUTORY, INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF\n MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE APPLY TO THIS SOFTWARE.\n ARM SHALL NOT, IN ANY CIRCUMSTANCES, BE LIABLE FOR SPECIAL, INCIDENTAL, OR\n CONSEQUENTIAL DAMAGES, FOR ANY REASON WHATSOEVER. &lt;/licenseText&gt; &lt;cpu&gt; &lt;!-- details about the cpu embedded in the device --&gt; &lt;name&gt;CM3&lt;/name&gt; &lt;revision&gt;r1p0&lt;/revision&gt; &lt;endian&gt;little&lt;/endian&gt; &lt;mpuPresent&gt;true&lt;/mpuPresent&gt; &lt;fpuPresent&gt;false&lt;/fpuPresent&gt; &lt;nvicPrioBits&gt;3&lt;/nvicPrioBits&gt; &lt;vendorSystickConfig&gt;false&lt;/vendorSystickConfig&gt; &lt;/cpu&gt; &lt;addressUnitBits&gt;8&lt;/addressUnitBits&gt; &lt;!-- byte addressable memory --&gt; &lt;width&gt;32&lt;/width&gt; &lt;!-- bus width is 32 bits --&gt; &lt;!-- default settings implicitly inherited by subsequent sections --&gt; &lt;size&gt;32&lt;/size&gt; &lt;!-- this is the default size (number of bits) of all peripherals and register that do not define "size" themselves --&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;!-- default access permission for all subsequent registers --&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;!-- by default all bits of the registers are initialized to 0 on reset --&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;!-- by default all 32Bits of the registers are used --&gt; &lt;peripherals&gt; &lt;!-- Timer 0 --&gt; &lt;peripheral&gt; &lt;name&gt;TIMER0&lt;/name&gt; &lt;version&gt;1.0&lt;/version&gt; &lt;description&gt;32 Timer / Counter, counting up or down from different sources&lt;/description&gt; &lt;groupName&gt;TIMER&lt;/groupName&gt; &lt;baseAddress&gt;0x40010000&lt;/baseAddress&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;addressBlock&gt; &lt;offset&gt;0&lt;/offset&gt; &lt;size&gt;0x100&lt;/size&gt; &lt;usage&gt;registers&lt;/usage&gt; &lt;/addressBlock&gt; &lt;interrupt&gt; &lt;name&gt;TIMER0&lt;/name&gt; &lt;description&gt;Timer 0 interrupt&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/interrupt&gt; &lt;registers&gt; &lt;!-- CR: Control Register --&gt; &lt;register&gt; &lt;name&gt;CR&lt;/name&gt; &lt;description&gt;Control Register&lt;/description&gt; &lt;addressOffset&gt;0x00&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0x1337F7F&lt;/resetMask&gt; &lt;fields&gt; &lt;!-- EN: Enable --&gt; &lt;field&gt; &lt;name&gt;EN&lt;/name&gt; &lt;description&gt;Enable&lt;/description&gt; &lt;bitRange&gt;[0:0]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Disable&lt;/name&gt; &lt;description&gt;Timer is disabled and does not operate&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Enable&lt;/name&gt; &lt;description&gt;Timer is enabled and can operate&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- RST: Reset --&gt; &lt;field&gt; &lt;name&gt;RST&lt;/name&gt; &lt;description&gt;Reset Timer&lt;/description&gt; &lt;bitRange&gt;[1:1]&lt;/bitRange&gt; &lt;access&gt;write-only&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;No_Action&lt;/name&gt; &lt;description&gt;Write as ZERO if necessary&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Reset_Timer&lt;/name&gt; &lt;description&gt;Reset the Timer&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- CNT: Counting Direction --&gt; &lt;field&gt; &lt;name&gt;CNT&lt;/name&gt; &lt;description&gt;Counting direction&lt;/description&gt; &lt;bitRange&gt;[3:2]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Count_UP&lt;/name&gt; &lt;description&gt;Timer Counts UO and wraps, if no STOP condition is set&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Count_DOWN&lt;/name&gt; &lt;description&gt;Timer Counts DOWN and wraps, if no STOP condition is set&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Toggle&lt;/name&gt; &lt;description&gt;Timer Counts up to MAX, then DOWN to ZERO, if no STOP condition is set&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- MODE: Operation Mode --&gt; &lt;field&gt; &lt;name&gt;MODE&lt;/name&gt; &lt;description&gt;Operation Mode&lt;/description&gt; &lt;bitRange&gt;[6:4]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Continous&lt;/name&gt; &lt;description&gt;Timer runs continously&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Single_ZERO_MAX&lt;/name&gt; &lt;description&gt;Timer counts to 0x00 or 0xFFFFFFFF (depending on CNT) and stops&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Single_MATCH&lt;/name&gt; &lt;description&gt;Timer counts to the Value of MATCH Register and stops&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Reload_ZERO_MAX&lt;/name&gt; &lt;description&gt;Timer counts to 0x00 or 0xFFFFFFFF (depending on CNT), loads the RELOAD Value and continues&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Reload_MATCH&lt;/name&gt; &lt;description&gt;Timer counts to the Value of MATCH Register, loads the RELOAD Value and continues&lt;/description&gt; &lt;value&gt;4&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- PSC: Use Prescaler --&gt; &lt;field&gt; &lt;name&gt;PSC&lt;/name&gt; &lt;description&gt;Use Prescaler&lt;/description&gt; &lt;bitRange&gt;[7:7]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Disabled&lt;/name&gt; &lt;description&gt;Prescaler is not used&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Enabled&lt;/name&gt; &lt;description&gt;Prescaler is used as divider&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- CNTSRC: Timer / Counter Soruce Divider --&gt; &lt;field&gt; &lt;name&gt;CNTSRC&lt;/name&gt; &lt;description&gt;Timer / Counter Source Divider&lt;/description&gt; &lt;bitRange&gt;[11:8]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC&lt;/name&gt; &lt;description&gt;Capture Source is used directly&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div2&lt;/name&gt; &lt;description&gt;Capture Source is divided by 2&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div4&lt;/name&gt; &lt;description&gt;Capture Source is divided by 4&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div8&lt;/name&gt; &lt;description&gt;Capture Source is divided by 8&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div16&lt;/name&gt; &lt;description&gt;Capture Source is divided by 16&lt;/description&gt; &lt;value&gt;4&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div32&lt;/name&gt; &lt;description&gt;Capture Source is divided by 32&lt;/description&gt; &lt;value&gt;5&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div64&lt;/name&gt; &lt;description&gt;Capture Source is divided by 64&lt;/description&gt; &lt;value&gt;6&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div128&lt;/name&gt; &lt;description&gt;Capture Source is divided by 128&lt;/description&gt; &lt;value&gt;7&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;CAP_SRC_div256&lt;/name&gt; &lt;description&gt;Capture Source is divided by 256&lt;/description&gt; &lt;value&gt;8&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- CAPSRC: Timer / COunter Capture Source --&gt; &lt;field&gt; &lt;name&gt;CAPSRC&lt;/name&gt; &lt;description&gt;Timer / Counter Capture Source&lt;/description&gt; &lt;bitRange&gt;[15:12]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;CClk&lt;/name&gt; &lt;description&gt;Core Clock&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_0&lt;/name&gt; &lt;description&gt;GPIO A, PIN 0&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_1&lt;/name&gt; &lt;description&gt;GPIO A, PIN 1&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_2&lt;/name&gt; &lt;description&gt;GPIO A, PIN 2&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_3&lt;/name&gt; &lt;description&gt;GPIO A, PIN 3&lt;/description&gt; &lt;value&gt;4&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_4&lt;/name&gt; &lt;description&gt;GPIO A, PIN 4&lt;/description&gt; &lt;value&gt;5&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_5&lt;/name&gt; &lt;description&gt;GPIO A, PIN 5&lt;/description&gt; &lt;value&gt;6&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_6&lt;/name&gt; &lt;description&gt;GPIO A, PIN 6&lt;/description&gt; &lt;value&gt;7&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOA_7&lt;/name&gt; &lt;description&gt;GPIO A, PIN 7&lt;/description&gt; &lt;value&gt;8&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOB_0&lt;/name&gt; &lt;description&gt;GPIO B, PIN 0&lt;/description&gt; &lt;value&gt;9&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOB_1&lt;/name&gt; &lt;description&gt;GPIO B, PIN 1&lt;/description&gt; &lt;value&gt;10&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOB_2&lt;/name&gt; &lt;description&gt;GPIO B, PIN 2&lt;/description&gt; &lt;value&gt;11&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOB_3&lt;/name&gt; &lt;description&gt;GPIO B, PIN 3&lt;/description&gt; &lt;value&gt;12&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOC_0&lt;/name&gt; &lt;description&gt;GPIO C, PIN 0&lt;/description&gt; &lt;value&gt;13&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOC_5&lt;/name&gt; &lt;description&gt;GPIO C, PIN 1&lt;/description&gt; &lt;value&gt;14&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;GPIOC_6&lt;/name&gt; &lt;description&gt;GPIO C, PIN 2&lt;/description&gt; &lt;value&gt;15&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- CAPEDGE: Capture Edge --&gt; &lt;field&gt; &lt;name&gt;CAPEDGE&lt;/name&gt; &lt;description&gt;Capture Edge, select which Edge should result in a counter increment or decrement&lt;/description&gt; &lt;bitRange&gt;[17:16]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;RISING&lt;/name&gt; &lt;description&gt;Only rising edges result in a counter increment or decrement&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;FALLING&lt;/name&gt; &lt;description&gt;Only falling edges result in a counter increment or decrement&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;BOTH&lt;/name&gt; &lt;description&gt;Rising and falling edges result in a counter increment or decrement&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- TRGEXT: Triggers an other Peripheral --&gt; &lt;field&gt; &lt;name&gt;TRGEXT&lt;/name&gt; &lt;description&gt;Triggers an other Peripheral&lt;/description&gt; &lt;bitRange&gt;[21:20]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;NONE&lt;/name&gt; &lt;description&gt;No Trigger is emitted&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;DMA1&lt;/name&gt; &lt;description&gt;DMA Controller 1 is triggered, dependant on MODE&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;DMA2&lt;/name&gt; &lt;description&gt;DMA Controller 2 is triggered, dependant on MODE&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;UART&lt;/name&gt; &lt;description&gt;UART is triggered, dependant on MODE&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- Reload: Selects Reload Register n --&gt; &lt;field&gt; &lt;name&gt;RELOAD&lt;/name&gt; &lt;description&gt;Select RELOAD Register n to reload Timer on condition&lt;/description&gt; &lt;bitRange&gt;[25:24]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD0&lt;/name&gt; &lt;description&gt;Selects Reload Register number 0&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD1&lt;/name&gt; &lt;description&gt;Selects Reload Register number 1&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD2&lt;/name&gt; &lt;description&gt;Selects Reload Register number 2&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD3&lt;/name&gt; &lt;description&gt;Selects Reload Register number 3&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- IDR: Inc or dec Reload Register Selection --&gt; &lt;field&gt; &lt;name&gt;IDR&lt;/name&gt; &lt;description&gt;Selects, if Reload Register number is incremented, decremented or not modified&lt;/description&gt; &lt;bitRange&gt;[27:26]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;KEEP&lt;/name&gt; &lt;description&gt;Reload Register number does not change automatically&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;INCREMENT&lt;/name&gt; &lt;description&gt;Reload Register number is incremented on each match&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;DECREMENT&lt;/name&gt; &lt;description&gt;Reload Register number is decremented on each match&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- START: Starts / Stops the Timer/Counter --&gt; &lt;field&gt; &lt;name&gt;S&lt;/name&gt; &lt;description&gt;Starts and Stops the Timer / Counter&lt;/description&gt; &lt;bitRange&gt;[31:31]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;STOP&lt;/name&gt; &lt;description&gt;Timer / Counter is stopped&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;START&lt;/name&gt; &lt;description&gt;Timer / Counter is started&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;/fields&gt; &lt;/register&gt; &lt;!-- SR: Status Register --&gt; &lt;register&gt; &lt;name&gt;SR&lt;/name&gt; &lt;description&gt;Status Register&lt;/description&gt; &lt;addressOffset&gt;0x04&lt;/addressOffset&gt; &lt;size&gt;16&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xD701&lt;/resetMask&gt; &lt;fields&gt; &lt;!-- RUN: Shows if Timer is running --&gt; &lt;field&gt; &lt;name&gt;RUN&lt;/name&gt; &lt;description&gt;Shows if Timer is running or not&lt;/description&gt; &lt;bitRange&gt;[0:0]&lt;/bitRange&gt; &lt;access&gt;read-only&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Stopped&lt;/name&gt; &lt;description&gt;Timer is not running&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Running&lt;/name&gt; &lt;description&gt;Timer is running&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- MATCH: Shows if a Match was hit --&gt; &lt;field&gt; &lt;name&gt;MATCH&lt;/name&gt; &lt;description&gt;Shows if the MATCH was hit&lt;/description&gt; &lt;bitRange&gt;[8:8]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;No_Match&lt;/name&gt; &lt;description&gt;The MATCH condition was not hit&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Match_Hit&lt;/name&gt; &lt;description&gt;The MATCH condition was hit&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- UN: Shows if an underflow occured --&gt; &lt;field&gt; &lt;name&gt;UN&lt;/name&gt; &lt;description&gt;Shows if an underflow occured. This flag is sticky&lt;/description&gt; &lt;bitRange&gt;[9:9]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;No_Underflow&lt;/name&gt; &lt;description&gt;No underflow occured since last clear&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Underflow&lt;/name&gt; &lt;description&gt;A minimum of one underflow occured since last clear&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- OV: Shows if an overflow occured --&gt; &lt;field&gt; &lt;name&gt;OV&lt;/name&gt; &lt;description&gt;Shows if an overflow occured. This flag is sticky&lt;/description&gt; &lt;bitRange&gt;[10:10]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;No_Overflow&lt;/name&gt; &lt;description&gt;No overflow occured since last clear&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Overflow_occured&lt;/name&gt; &lt;description&gt;A minimum of one overflow occured since last clear&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- RST: Shows if Timer is in RESET state --&gt; &lt;field&gt; &lt;name&gt;RST&lt;/name&gt; &lt;description&gt;Shows if Timer is in RESET state&lt;/description&gt; &lt;bitRange&gt;[12:12]&lt;/bitRange&gt; &lt;access&gt;read-only&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Ready&lt;/name&gt; &lt;description&gt;Timer is not in RESET state and can operate&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;In_Reset&lt;/name&gt; &lt;description&gt;Timer is in RESET state and can not operate&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- RELOAD: Shows the currently active Reload Register --&gt; &lt;field&gt; &lt;name&gt;RELOAD&lt;/name&gt; &lt;description&gt;Shows the currently active RELOAD Register&lt;/description&gt; &lt;bitRange&gt;[15:14]&lt;/bitRange&gt; &lt;access&gt;read-only&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD0&lt;/name&gt; &lt;description&gt;Reload Register number 0 is active&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD1&lt;/name&gt; &lt;description&gt;Reload Register number 1 is active&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD2&lt;/name&gt; &lt;description&gt;Reload Register number 2 is active&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;RELOAD3&lt;/name&gt; &lt;description&gt;Reload Register number 3 is active&lt;/description&gt; &lt;value&gt;3&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;/fields&gt; &lt;/register&gt; &lt;!-- INT: Interrupt Register --&gt; &lt;register&gt; &lt;name&gt;INT&lt;/name&gt; &lt;description&gt;Interrupt Register&lt;/description&gt; &lt;addressOffset&gt;0x10&lt;/addressOffset&gt; &lt;size&gt;16&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0x0771&lt;/resetMask&gt; &lt;fields&gt; &lt;!-- EN: Interrupt Enable --&gt; &lt;field&gt; &lt;name&gt;EN&lt;/name&gt; &lt;description&gt;Interrupt Enable&lt;/description&gt; &lt;bitRange&gt;[0:0]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Disabled&lt;/name&gt; &lt;description&gt;Timer does not generate Interrupts&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Enable&lt;/name&gt; &lt;description&gt;Timer triggers the TIMERn Interrupt&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;!-- MODE: Interrupt Mode --&gt; &lt;field&gt; &lt;name&gt;MODE&lt;/name&gt; &lt;description&gt;Interrupt Mode, selects on which condition the Timer should generate an Interrupt&lt;/description&gt; &lt;bitRange&gt;[6:4]&lt;/bitRange&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;enumeratedValues&gt; &lt;enumeratedValue&gt; &lt;name&gt;Match&lt;/name&gt; &lt;description&gt;Timer generates an Interrupt when the MATCH condition is hit&lt;/description&gt; &lt;value&gt;0&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Underflow&lt;/name&gt; &lt;description&gt;Timer generates an Interrupt when it underflows&lt;/description&gt; &lt;value&gt;1&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;enumeratedValue&gt; &lt;name&gt;Overflow&lt;/name&gt; &lt;description&gt;Timer generates an Interrupt when it overflows&lt;/description&gt; &lt;value&gt;2&lt;/value&gt; &lt;/enumeratedValue&gt; &lt;/enumeratedValues&gt; &lt;/field&gt; &lt;/fields&gt; &lt;/register&gt; &lt;!-- COUNT: Counter Register --&gt; &lt;register&gt; &lt;name&gt;COUNT&lt;/name&gt; &lt;description&gt;The Counter Register reflects the actual Value of the Timer/Counter&lt;/description&gt; &lt;addressOffset&gt;0x20&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;/register&gt; &lt;!-- MATCH: Match Register --&gt; &lt;register&gt; &lt;name&gt;MATCH&lt;/name&gt; &lt;description&gt;The Match Register stores the compare Value for the MATCH condition&lt;/description&gt; &lt;addressOffset&gt;0x24&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;/register&gt; &lt;!-- PRESCALE: Prescale Read Register --&gt; &lt;register&gt; &lt;name&gt;PRESCALE_RD&lt;/name&gt; &lt;description&gt;The Prescale Register stores the Value for the prescaler. The cont event gets divided by this value&lt;/description&gt; &lt;addressOffset&gt;0x28&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-only&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;/register&gt; &lt;!-- PRESCALE: Prescale Write Register --&gt; &lt;register&gt; &lt;name&gt;PRESCALE_WR&lt;/name&gt; &lt;description&gt;The Prescale Register stores the Value for the prescaler. The cont event gets divided by this value&lt;/description&gt; &lt;addressOffset&gt;0x28&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;write-only&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;/register&gt; &lt;!-- RELOAD: Array of Reload Register with 4 elements--&gt; &lt;register&gt; &lt;dim&gt;4&lt;/dim&gt; &lt;dimIncrement&gt;4&lt;/dimIncrement&gt; &lt;name&gt;RELOAD[%s]&lt;/name&gt; &lt;description&gt;The Reload Register stores the Value the COUNT Register gets reloaded on a when a condition was met.&lt;/description&gt; &lt;addressOffset&gt;0x50&lt;/addressOffset&gt; &lt;size&gt;32&lt;/size&gt; &lt;access&gt;read-write&lt;/access&gt; &lt;resetValue&gt;0x00000000&lt;/resetValue&gt; &lt;resetMask&gt;0xFFFFFFFF&lt;/resetMask&gt; &lt;/register&gt; &lt;/registers&gt; &lt;/peripheral&gt; &lt;!-- Timer 1 --&gt; &lt;peripheral derivedFrom="TIMER0"&gt; &lt;name&gt;TIMER1&lt;/name&gt; &lt;baseAddress&gt;0x40010100&lt;/baseAddress&gt; &lt;interrupt&gt; &lt;name&gt;TIMER1&lt;/name&gt; &lt;description&gt;Timer 2 interrupt&lt;/description&gt; &lt;value&gt;4&lt;/value&gt; &lt;/interrupt&gt; &lt;/peripheral&gt; &lt;!-- Timer 2 --&gt; &lt;peripheral derivedFrom="TIMER0"&gt; &lt;name&gt;TIMER2&lt;/name&gt; &lt;baseAddress&gt;0x40010200&lt;/baseAddress&gt; &lt;interrupt&gt; &lt;name&gt;TIMER2&lt;/name&gt; &lt;description&gt;Timer 2 interrupt&lt;/description&gt; &lt;value&gt;6&lt;/value&gt; &lt;/interrupt&gt; &lt;/peripheral&gt; &lt;/peripherals&gt; &lt;/device&gt; </pre> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="svd_Format_pg.html">SVD Description (*.svd) Format</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_Example_pg.html
HTML
apache-2.0
44,928
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>SVD Description (*.svd) Format</title> <title>CMSIS-SVD: SVD Description (*.svd) Format</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_Format_pg.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">SVD Description (*.svd) Format </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The CMSIS-SVD format is based on XML and was influenced by IP-XACT. Due to the much wider scope and complexity of IP-XACT, it was decided to specify a separate format focused and tailored towards the description of the programmer's view of a device.</p> <p><b>CMSIS-SVD XML Hierarchy</b></p> <div class="image"> <img src="CMSIS_SVD_Schema_Gen.png" alt="CMSIS_SVD_Schema_Gen.png"/> <div class="caption"> CMSIS-SVD Hierarchy Levels</div></div> <p> One CMSIS-SVD file contains the description of a single device. A device consists of a processor and at least one peripheral. Each peripheral contains at least one register. A register may consist of one or more fields. The range of values for a field may be further described with enumerated values.</p> <ul> <li><a class="el" href="svd_xml_conventions_gr.html">File Conventions:</a> Outlines the main conventions for writing an SVD description file. <br/> <br/> </li> <li><a class="el" href="svd_Example_pg.html">SVD File Example</a> Provides an example outlining the SVD XML structure. <br/> <br/> </li> <li><a class="el" href="elem_device.html">Device Level:</a> The top level of a System View Description is the device. On this level, information is captured that is specific to the device as a whole. For example, the device name, description, or version. The minimal addressable unit as well as the bit-width of the data bus are required by the debugger to perform the correct target accesses. <br/> Default values for register attributes like register size, reset value, and access permissions can be set for the whole device on this level and are implicitly inherited by the lower levels of the description. If however specified on a lower level, the default setting from a higher level will get overruled. <br/> <br/> </li> <li><a class="el" href="elem_cpu.html">CPU Level:</a> The CPU section describes the processor included in the microcontroller device. This section is mandatory if the SVD file is used to generate the device header file. <br/> <br/> </li> <li><a class="el" href="elem_peripherals.html">Peripherals Level:</a> A peripheral is a named collection of registers. A peripheral is mapped to a defined <em>base address</em> within the device's address space. A peripheral allocates one or more exclusive address blocks relative to its base address, such that all described registers fit into the allocated address blocks. Allocated addresses without an associated register description are automatically considered reserved. The peripheral can be assigned to a group of peripherals and may be associated with one or more interrupts. <br/> <br/> </li> <li><a class="el" href="elem_registers.html">Registers Level:</a> A register is a named, programmable resource that belongs to a peripheral. Registers are mapped to a defined address in the address space of the device. An address is specified relative to the peripheral base address. The description of a register documents the purpose and function of the resource. A debugger requires information about the permitted access to a resource as well as side effects triggered by read and write accesses respectively. <br/> <br/> </li> <li><a class="el" href="elem_registers.html#elem_fields">Fields Level:</a> Registers may be partitioned into chunks of bits of distinct functionality. A chunk is referred to as <em>field</em>. The field names within a single register must be unique. Only architecturally defined fields shall be described. Any bits not being explicitly described are treated as reserved. They are not displayed in the System Viewer and are padded in the bit fields of the device header file. The case-insensitive field named <b>"reserved"</b> is treated as a keyword and each field with this name is ignored. <br/> <br/> </li> <li><a class="el" href="elem_registers.html#elem_enumeratedValues">Enumerated Values Level:</a> An enumeration maps an unsigned integer constant to a descriptive identifier and, optionally, to a description string. Enumerations are used in C to enhance the readability of source code. Similarly, it can be used by debuggers to provide more instructive information to the programmer, avoiding a lookup in the device documentation. <br/> <br/> </li> <li><a class="el" href="elem_special.html">Special Elements:</a> Specific elements that occur in various other elements are described in this section. <br/> <br/> </li> <li><b>Vendor Extensions:</b> The CMSIS-SVD format includes a section named <em>&lt;vendorExtensions&gt;</em> positioned after the closing tag <em>&lt;/peripherals&gt;</em>. This allows silicon vendors and tool partners to extend the description beyond the current specification.</li> </ul> <p><b>Multiple Instantiation</b></p> <p>CMSIS-SVD supports the reuse of whole sections of the description. The attribute <em>derivedFrom</em> for <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a>, <a class="el" href="elem_registers.html#elem_register">register</a>, and <a class="el" href="elem_registers.html#elem_field">field</a> specifies the source of the section to be copied from. Individual tags can be used to redefine specific elements within a copied section.</p> <p><b>Array of Elements</b></p> <p>A powerfull construct in data structures of the C programming language is the array. An array is a series of data elements of the same type selected via an index. CMSIS-SVD supports arrays for <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a>, <a class="el" href="elem_registers.html#elem_cluster">cluster</a>, and <a class="el" href="elem_registers.html#elem_register">register</a>.</p> <p><b>Peripheral Grouping</b></p> <p>Peripherals that provide similar functionality (Simple Timer, Complex Timer) can be grouped with the element <em>&lt;groupName&gt;</em>. Peripheral groups help structuring the list of peripherals in the debugger. All peripherals associated with the same group name are collectively listed under this group in the order they were specified in the SVD file.</p> <p><b>Descriptions</b></p> <p>On each level, the tag <em>&lt;description&gt;</em> provides verbose information about the respective element. The description field plays an important part in improving software development productivity as it gives instant access to information that otherwise would need to be looked up in the device documentation.</p> <p>All multiple whitespace characters (space, tab, linefeed, carriage return) may be removed from the description by any tool for further processing (i.e. SVDConv does). In order to preserve explicit linebreaks one has to use the linefeed escape sequence (i.e. \n).</p> <p>&#160; </p> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_Format_pg.html
HTML
apache-2.0
11,592
var svd_Format_pg = [ [ "File Conventions", "svd_xml_conventions_gr.html", [ [ "Names", "svd_xml_conventions_gr.html#Names", null ], [ "Constants", "svd_xml_conventions_gr.html#Constants", null ], [ "Comments", "svd_xml_conventions_gr.html#Comments", null ], [ "Empty Tags", "svd_xml_conventions_gr.html#_", null ] ] ], [ "SVD File Example", "svd_Example_pg.html", null ], [ "/device element", "elem_device.html", null ], [ "/device/cpu element", "elem_cpu.html", [ [ "/device/cpu/sauRegionsConfig element", "elem_cpu.html#elem_sauRegionsConfig", null ], [ "/device/cpu/sauRegionsConfig/region element", "elem_cpu.html#elem_region", null ] ] ], [ "/device/peripherals element", "elem_peripherals.html", [ [ "/device/peripherals/peripheral element", "elem_peripherals.html#elem_peripheral", null ], [ "/device/peripherals/peripheral/addressBlock element", "elem_peripherals.html#elem_addressBlock", null ], [ "/device/peripherals/peripheral/interrupt element", "elem_peripherals.html#elem_interrupt", null ] ] ], [ "/device/peripherals/peripheral/registers element", "elem_registers.html", [ [ "/device/pripherals/peripheral/registers/.../cluster element", "elem_registers.html#elem_cluster", null ], [ "/device/peripherals/peripheral/registers/.../register element", "elem_registers.html#elem_register", null ], [ "/device/peripherals/peripheral/registers/.../register/.../writeConstraint element", "elem_registers.html#elem_writeConstraint", null ], [ "/device/peripherals/peripheral/registers/.../register/fields element", "elem_registers.html#elem_fields", null ], [ "/device/peripherals/peripheral/registers/.../fields/field element", "elem_registers.html#elem_field", null ], [ "/device/peripherals/peripheral/registers/.../field/enumeratedValues element", "elem_registers.html#elem_enumeratedValues", null ], [ "/device/peripherals/peripheral/registers/.../enumeratedValue element", "elem_registers.html#elem_enumeratedValue", null ] ] ], [ "Special Elements", "elem_special.html", [ [ "dimElementGroup", "elem_special.html#dimElementGroup_gr", [ [ "/device/peripherals/peripheral/.../dimArrayIndex element", "elem_special.html#elem_dimArrayIndex", null ] ] ], [ "registerPropertiesGroup", "elem_special.html#registerPropertiesGroup_gr", null ] ] ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_Format_pg.js
JavaScript
apache-2.0
2,427
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>SVDConv.exe</title> <title>CMSIS-SVD: SVDConv.exe</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_SVDConv_pg.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">SVDConv.exe </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p><b>SVDConv.exe</b> is a command-line utility to validate CMSIS-SVD files and to generate CMSIS-compliant device header files. <b>SVDConv.exe</b> is distributed with the <b>ARM::CMSIS</b> Pack (in the CMSIS\Utilities directory) together with the CMSIS-SVD schema file.</p> <p><b>SVDConv.exe</b> performs the following operations:</p> <ul> <li>Checks the syntactical and structural compliance with the specified CMSIS-SVD format.</li> <li>Checks the consistency, correctness, and completeness of the CMSIS-SVD file against the CMSIS-SVD schema file.</li> <li>Generates CMSIS-compliant device header files, which can be used for software development.</li> </ul> <dl class="section note"><dt>Note</dt><dd>Consider using --strict option to receive all pedantic warnings. Some rules are skipped by default due to backward compatibility reasons. All newly developed/updated SVD files should rather respect all rules.</dd></dl> <h2>Operation </h2> <p><b>SVDConv.exe</b> is invoked form the command line. The general command format is: </p> <div class="fragment"><div class="line">SVDConv.exe &lt;SVD_file&gt; &lt;options&gt;</div> </div><!-- fragment --><p>&#160;</p> <table class="cmtable" summary="SVDConv Args"> <tr> <th>&lt;options&gt; </th><th>Short Name </th><th>Description </th></tr> <tr> <td><em>none</em> </td><td>Validation </td><td>Perform a validation check of the SVD file. Errors and warnings are printed on screen. </td></tr> <tr> <td>-b </td><td>Log File </td><td>Specify the log file name for writing messages. Default: screen. </td></tr> <tr> <td>-o </td><td>Output Path </td><td>Specify an output path for the generated device header file or log file. Default: current directory. </td></tr> <tr> <td>--generate=header </td><td>Generate Device Header File </td><td>Generates the device header file. The name of the generated file is derived from the value of the tag &lt;device&lt;name&gt; in the CMSIS-SVD file. Refer to <a class="el" href="elem_device.html">device</a>. </td></tr> <tr> <td>--generate=partition </td><td>Generate Partition file for Cortex-M Security Extensions (Armv8-M) </td><td>Generates the device partition file. The name of the generated file is composed of <em>partition_</em> and the value of the device <em>&lt;name&gt;</em> (for example, <em>partition_CMSDK_ARMv8MBL.h</em>). Refer to <a class="el" href="elem_device.html">/device element</a>. The content of the file uses Configuration Wizard annotations and is derived from the SAU-specific information of the <a class="el" href="elem_cpu.html#elem_sauRegionsConfig">/device/cpu/sauRegionsConfig element</a> and the interrupts specified in the <a class="el" href="elem_peripherals.html">/device/peripherals element</a>. </td></tr> <tr> <td>--fields=enum </td><td>Bit-field Enums </td><td>Generates enum lists for each field value description contained in the CMSIS-SVD input file. Must be used in combination with <em>--generate=header</em>. </td></tr> <tr> <td>--fields=macro </td><td>Bit-field Macros </td><td>Generates position and mask C-Macros for each field description contained in the CMSIS-SVD input file. Must be used in combination with <em>--generate=header</em>. </td></tr> <tr> <td>--fields=struct </td><td>Bit-field Structs </td><td>Generates bit fields for each field description contained in the CMSIS-SVD input file. Must be used in combination with <em>--generate=header</em>. </td></tr> <tr> <td>--fields=struct-ansic </td><td>ANSI Bit-field Structs </td><td>Generates MISRA-compliant structures for each bitfield. The generated code <b>is not CMSIS-compliant</b>! Must be used in combination with <em>--generate=header</em>. </td></tr> <tr> <td>--strict </td><td>Strict error checking </td><td><b>RECOMMENDED!</b> Applies strict error checking and generates a lot more messages. </td></tr> </table> <h2>Return Codes </h2> <p><b>SVDConv.exe</b> returns the following codes: <br/> </p> <table class="doxtable"> <tr> <th align="center">Code </th><th align="left">Description </th><th align="left">Action </th></tr> <tr> <td align="center">0 </td><td align="left">OK </td><td align="left">No action required. Validation and conversion performed without errors. </td></tr> <tr> <td align="center">1 </td><td align="left">WARNINGS </td><td align="left">Warnings should be checked an possibly removed. The header file is created and could be used. </td></tr> <tr> <td align="center">2 </td><td align="left">ERRORS </td><td align="left">Errors in the SVD description file. Important elements are missing and must be corrected. </td></tr> <tr> <td align="center">3 </td><td align="left">Error in command line </td><td align="left">Check and correct the command line arguments. </td></tr> </table> <p><b>Examples</b> <br/> </p> <ol type="1"> <li>Retrieve help information on screen. <div class="fragment"><div class="line">SVDConv.exe </div> </div><!-- fragment --> <br/> </li> <li>Perform a consistency check by passing only the SVD file name. Errors and warnings are printed on screen. <div class="fragment"><div class="line">SVDConv.exe ARM_Example.svd </div> </div><!-- fragment --> <br/> The result is printed on screen: <pre class="fragment"> MVCM3110.svd(1688) : info &lt;description&gt; missing for value '2 : MODE2' MVCM3110.svd(1692) : info &lt;description&gt; missing for value '3 : MODE3' MVCM3110.svd(1696) : info &lt;description&gt; missing for value '4 : MODE4' Area of improvements: * Description contains 267 &lt;fields&gt; defined without associated &lt;enumeratedValues&gt; Found 0 Errors and 1 Warnings Return Code: 1 (WARNINGS)</pre> <br/> </li> <li>Generate the header file. Performs a consistency check. Errors and warnings are printed on screen. <div class="fragment"><div class="line">SVDConv.exe ARM_Example.svd --generate=header</div> </div><!-- fragment --> <br/> Code snippet from the generated header file showing the structure for <b>TIMER0</b>. <br/> <div class="fragment"><div class="line"><span class="comment">/* ================ TIMER0 ================ */</span></div> <div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span>{ </div> <div class="line"> __IO uint32_t CR; </div> <div class="line"> __IO uint16_t SR; </div> <div class="line"> __I uint16_t RESERVED0[5];</div> <div class="line"> __IO uint16_t INT; </div> <div class="line"> __I uint16_t RESERVED1[7];</div> <div class="line"> __IO uint32_t COUNT; </div> <div class="line"> __IO uint32_t MATCH; </div> <div class="line"> <span class="keyword">union </span>{</div> <div class="line"> __O uint32_t PRESCALE_WR; </div> <div class="line"> __I uint32_t PRESCALE_RD; </div> <div class="line"> };</div> <div class="line"> __I uint32_t RESERVED2[9];</div> <div class="line"> __IO uint32_t RELOAD[4]; </div> <div class="line">} TIMER0_Type;</div> </div><!-- fragment --> <br/> </li> <li>Generate the header file containing bit fields. Performs a consistency check. Errors and warnings are printed on screen. <div class="fragment"><div class="line">SVDConv.exe ARM_Example.svd --generate=header --fields=<span class="keyword">struct</span></div> </div><!-- fragment --> <br/> Code snippet from the generated header file showing the structure for <b>TIMER0</b>. <br/> Compare to the code snippet above. <div class="fragment"><div class="line"><span class="comment">/* ================ TIMER0 ================ */</span></div> <div class="line"><span class="keyword">typedef</span> <span class="keyword">struct </span>{ </div> <div class="line"> <span class="keyword">union </span>{</div> <div class="line"> __IO uint32_t CR; </div> <div class="line"> <span class="keyword">struct </span>{</div> <div class="line"> __IO uint32_t EN : 1; </div> <div class="line"> __O uint32_t RST : 1; </div> <div class="line"> __IO uint32_t CNT : 2; </div> <div class="line"> __IO uint32_t MODE : 3; </div> <div class="line"> __IO uint32_t PSC : 1; </div> <div class="line"> __IO uint32_t CNTSRC : 4; </div> <div class="line"> __IO uint32_t CAPSRC : 4; </div> <div class="line"> __IO uint32_t CAPEDGE : 2; </div> <div class="line"> uint32_t : 2;</div> <div class="line"> __IO uint32_t TRGEXT : 2; </div> <div class="line"> uint32_t : 2;</div> <div class="line"> __IO uint32_t RELOAD : 2; </div> <div class="line"> __IO uint32_t IDR : 2; </div> <div class="line"> uint32_t : 3;</div> <div class="line"> __IO uint32_t S : 1; </div> <div class="line"> } CR_b; </div> <div class="line"> };</div> <div class="line"> </div> <div class="line"> <span class="keyword">union </span>{</div> <div class="line"> __IO uint16_t SR; </div> <div class="line"> <span class="keyword">struct </span>{</div> <div class="line"> __I uint16_t RUN : 1; </div> <div class="line"> uint16_t : 7;</div> <div class="line"> __IO uint16_t MATCH : 1; </div> <div class="line"> __IO uint16_t UN : 1; </div> <div class="line"> __IO uint16_t OV : 1; </div> <div class="line"> uint16_t : 1;</div> <div class="line"> __I uint16_t RST : 1; </div> <div class="line"> uint16_t : 1;</div> <div class="line"> __I uint16_t RELOAD : 2; </div> <div class="line"> } SR_b; </div> <div class="line"> };</div> <div class="line"> __I uint16_t RESERVED0[5];</div> <div class="line"> </div> <div class="line"> <span class="keyword">union </span>{</div> <div class="line"> __IO uint16_t INT; </div> <div class="line"> <span class="keyword">struct </span>{</div> <div class="line"> __IO uint16_t EN : 1; </div> <div class="line"> uint16_t : 3;</div> <div class="line"> __IO uint16_t MODE : 3; </div> <div class="line"> } INT_b; </div> <div class="line"> };</div> <div class="line"> __I uint16_t RESERVED1[7];</div> <div class="line"> __IO uint32_t COUNT; </div> <div class="line"> __IO uint32_t MATCH; </div> <div class="line"> <span class="keyword">union </span>{</div> <div class="line"> __O uint32_t PRESCALE_WR; </div> <div class="line"> __I uint32_t PRESCALE_RD; </div> <div class="line"> };</div> <div class="line"> __I uint32_t RESERVED2[9];</div> <div class="line"> __IO uint32_t RELOAD[4]; </div> <div class="line">} TIMER0_Type;</div> </div><!-- fragment --> </li> </ol> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_SVDConv_pg.html
HTML
apache-2.0
16,472
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Revision History</title> <title>CMSIS-SVD: Revision History</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_revisionHistory.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Revision History </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>From a schema perspective, CMSIS-SVD Version 1.1, 1.2 and 1.3 are fully backward compatible to version 1.0.</p> <table class="cmtable" summary="Revision History table"> <tr> <th>Version </th><th>Description </th></tr> <tr> <td>V1.3.3 </td><td><ul> <li>Updated file header to Apache 2.0 License.</li> <li>Added <em>dimableIdentifierType</em>, as a copy of previous <em>identifierType</em> adding "%s".</li> <li>Updated <em>identifierType</em> to only allow names without "%s" included.</li> <li>Removed <em>enumerationNameType</em>.</li> <li>Added <em>&lt;headerEnumName&gt;</em> to <a class="el" href="elem_registers.html#elem_enumeratedValues">enumeratedValues</a> and to <a class="el" href="elem_special.html#elem_dimArrayIndex">dimArrayIndex</a> for <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a> arrays, overwriting hierarchically generated names.</li> <li>Added <em>&lt;dimName&gt;</em> to <a class="el" href="elem_special.html#dimElementGroup_gr">dimElementGroup</a>. Only valid in <a class="el" href="elem_registers.html#elem_cluster">cluster</a> context, ignored otherwise. </li> </ul> </td></tr> <tr> <td>V1.3.2 </td><td><ul> <li>Extended command line of SVDConv.exe for partition.h file generation.</li> <li>added <a class="el" href="elem_special.html#elem_dimArrayIndex">dimArrayIndex</a> to <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a>, <a class="el" href="elem_registers.html#elem_cluster">cluster</a>, and <a class="el" href="elem_registers.html#elem_register">register</a> to describe enumeration of array indices. </li> </ul> </td></tr> <tr> <td>V1.3.1 </td><td><ul> <li>Added <a class="el" href="elem_special.html#elem_protection">protection</a> element; extended with protection option <span class="XML-Token">p=privileged</span>.</li> <li>Added <a class="el" href="elem_special.html#elem_protection">protection</a> element to <a class="el" href="elem_peripherals.html#elem_addressBlock">addressBlock</a>.</li> <li>Fixed <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a> name type to <em>identifierType</em> to support "%s" for peripheral arrays.</li> <li>Added Cortex-A class enumeration to <a class="el" href="elem_cpu.html">cpu</a>.</li> <li>added <a class="el" href="elem_special.html#elem_dimArrayIndex">dimArrayIndex</a> to <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a>, <a class="el" href="elem_registers.html#elem_cluster">cluster</a>, and <a class="el" href="elem_registers.html#elem_register">register</a> to describe enumeration of array indices. </li> </ul> </td></tr> <tr> <td>V1.3 </td><td><ul> <li>Extended <a class="el" href="elem_peripherals.html#elem_peripheral">peripheral</a> with <em>&lt;dim&gt;</em> to support arrays.</li> <li>Added nesting of <a class="el" href="elem_registers.html#elem_cluster">cluster</a> to support hierarchical register structures.</li> <li>Extended <a class="el" href="elem_cpu.html">cpu</a> with description of the <a class="el" href="elem_cpu.html#elem_sauRegionsConfig">sauRegionsConfig</a> (Secure Attribution Unit).</li> <li>Extended <a class="el" href="elem_special.html#registerPropertiesGroup_gr">register properties</a> with <a class="el" href="elem_special.html#elem_protection">protection</a> to reflect security aspects. </li> </ul> </td></tr> <tr> <td>V1.2 </td><td>Added optional elements for Cortex-M7 in <a class="el" href="elem_cpu.html">CPU</a>:<ul> <li><em>&lt;fpuDP&gt;</em></li> <li><em>&lt;icachePresent&gt;</em></li> <li><em>&lt;dcachePresent&gt;</em></li> <li><em>&lt;itcmPresent&gt;</em></li> <li><em>&lt;dtcmPresent&gt;</em> </li> </ul> </td></tr> <tr> <td>V1.1 </td><td>Many of the features added in version 1.1 are required for generating CMSIS-Core device header files from a CMSIS SVD description. It is expected that all CMSIS-SVD descriptions will comply with version 1.1 by now. </td></tr> <tr> <td>V1.0 </td><td>Initial version. </td></tr> </table> <p>&#160;</p> <hr/> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_revisionHistory.html
HTML
apache-2.0
8,893
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>SVD File Validation and Usage</title> <title>CMSIS-SVD: SVD File Validation and Usage</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_validate_file_pg.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">SVD File Validation and Usage </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The description quality is key to success of the CMSIS-SVD format. Aspects of quality are:</p> <ul> <li>Syntactical and structural compliance with the specified CMSIS-SVD format.</li> <li>Consistency and correctness.</li> <li>Completeness.</li> <li>Level of detail.</li> </ul> <div class="title">Validation</div><p> Automated validations are done on two levels:</p> <ol type="1"> <li><b>The CMSIS-SVD Schema File</b>: XML tools use the schema file for checking the syntactical and structural correctness of an XML file that claims compliance with a certain format. The schema file <em>CMSIS-SVD.xsd</em> is located in the folder <b>.\CMSIS\Utilities</b> of the <b>ARM::CMSIS</b> Pack. <br/> <br/> </li> <li><b>SVD Conversion Utility:</b> The conversion utility <a class="el" href="svd_SVDConv_pg.html">SVDConv.exe</a> checks the semantics and consistency of the data contained in a CMSIS-SVD file. <b>SVDConv.exe</b> is included in the CMSIS distribution.</li> </ol> <div class="title">Usage</div><p> CMSIS-SVD files can be used to generate:</p> <ol type="1"> <li>CMSIS-compliant device header files from a CMSIS-SVD description. Refer to the conversion tool <a class="el" href="svd_SVDConv_pg.html">SVDConv.exe</a> for details. CMSIS device header files are developed and maintained by the silicon vendors. Therefore, the expectation is that this conversion is only of interest to these parties.</li> <li>Debug dialogs that communicate with a debugger. See below.</li> </ol> <p><b>System Views</b> <br/> <br/> A number of tool vendors support the CMSIS-SVD format with their products. Refer to the tools documentation to find out how to use CMSIS-SVD descriptions with the debugger of your choice. Please regularly check for updates to the CMSIS Device Family Packs from the silicon vendor to to use the latest versions of the CMSIS-SVD files. <br/> <br/> <b>Generated Debug Dialog:</b> </p> <div class="image"> <img src="SystemViewer_Generated.png" alt="SystemViewer_Generated.png"/> <div class="caption"> uVision Debug Window generated from ARM_Example.svd</div></div> <p><br/> </p> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_validate_file_pg.html
HTML
apache-2.0
7,037
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>File Conventions</title> <title>CMSIS-SVD: File Conventions</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-SVD &#160;<span id="projectnumber">Version 1.3.3</span> </div> <div id="projectbrief">CMSIS System View Description</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('svd_xml_conventions_gr.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">File Conventions </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The section outlines the main conventions for writing the SVD description file.</p> <h1><a class="anchor" id="Names"></a> Names</h1> <p>All <b>name</b> tags must comp ly with the ANSI C identifier naming restrictions. In particular, they must not contain any spaces or special characters. This is necessary to support the generation of device header files thus providing consistency between the names being shown by the debugger and the symbols being used in the CMSIS compliant target software.</p> <h1><a class="anchor" id="Constants"></a> Constants</h1> <p>Number constants shall be entered in hexadecimal, decimal, or binary format. </p> <ul> <li>The Hexadecimal format is indicated by a leading <b><span class="XML-Token">0x</span></b>. </li> <li>The Binary format is indicated by a leading <b><span class="XML-Token">#</span></b>. </li> <li>All other formats are interpreted as decimal numbers. </li> <li>The element <em>&lt;enumeratedValue&gt;</em>.<em>&lt;value&gt;</em> can be used to define constants.</li> </ul> <h1><a class="anchor" id="Comments"></a> Comments</h1> <p>Comments have the standard XML format. </p> <ul> <li>Start a comment with <b><span class="XML-Token">&lt;!--</span></b>. </li> <li>End a comment with <b><span class="XML-Token">--&gt;</span></b>.</li> </ul> <h1><a class="anchor" id="_"></a> Empty Tags</h1> <ul> <li>Single tags are not supported (for example, <em>&lt;name\&gt;</em>).</li> <li>The tag content must not consist of an empty string. Omit optional tags instead.</li> </ul> <dl class="section remark"><dt>Remarks</dt><dd>The latest <a class="el" href="schema_1_2_gr.html">CMSIS-SVD Schema File</a> is provided alongside this document. </dd></dl> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="svd_Format_pg.html">SVD Description (*.svd) Format</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:05 for CMSIS-SVD Version 1.3.3 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/svd_xml_conventions_gr.html
HTML
apache-2.0
6,703
.tabs, .tabs1, .tabs2, .tabs3 { background-image: url('tab_b.png'); width: 100%; z-index: 101; font-size: 10px; } .tabs1 { background-image: url('tab_topnav.png'); font-size: 12px; } .tabs2 { font-size: 10px; } .tabs3 { font-size: 9px; } .tablist { margin: 0; padding: 0; display: table; line-height: 24px; } .tablist li { float: left; display: table-cell; background-image: url('tab_b.png'); list-style: none; } .tabs1 .tablist li { float: left; display: table-cell; background-image: url('tab_topnav.png'); list-style: none; } .tablist a { display: block; padding: 0 20px; font-weight: bold; background-image:url('tab_s.png'); background-repeat:no-repeat; background-position:right; color: #283A5D; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); text-decoration: none; outline: none; } .tabs3 .tablist a { padding: 0 10px; } .tablist a:hover { background-image: url('tab_h.png'); background-repeat:repeat-x; color: #fff; text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); text-decoration: none; } .tablist li.current a { background-image: url('tab_a.png'); background-repeat:repeat-x; color: #fff; text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); }
YifuLiu/AliOS-Things
components/cmsis/docs/SVD/html/tabs.css
CSS
apache-2.0
1,314
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Generator Data Model</title> <title>CMSIS-Zone (Preview): Generator Data Model</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('GenDataModel.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Generator Data Model </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <b>Generator Data Model</b> defines the resource and partition data structure for code generators. This data structure is connected to a FreeMarker template engine and file templates allow to generate various files that can be used to configure development tools or hardware components.</p> <div class="image"> <img src="generator.png" alt="generator.png"/> <div class="caption"> FreeMarker Template Engine</div></div> <h1><a class="anchor" id="fp_toplevel"></a> FreeMarker top-level format</h1> <p><a class="el" href="fm_system.html">system element</a> provides memory layout and TrustZone configuration of the complete system. <a class="el" href="fm_zone.html">zone element</a> setup information of a zone (or system partition) along with related peripherals.</p> <h1><a class="anchor" id="fm_basics"></a> FreeMarker basics</h1> <p>The variable types relevant for CMSIS-Zone are:</p> <p><b>scalar:</b> variable that stores a single value of a scalar type scalar-types:</p> <ul> <li>string</li> <li>int</li> <li>bool</li> </ul> <p><b>hash:</b> variable that that stores one or more variables with a unique lookup name</p> <p><b>sequence:</b> variable that stores sub-variables without names but instead are selected via index (myVariable[index])</p> <p>A variable is accessed using the dollar character followed by a variable or expression in brackets: </p> <div class="fragment"><div class="line">${...}</div> </div><!-- fragment --><p> Output the name of the zone: </p> <div class="fragment"><div class="line">${zone.name}</div> </div><!-- fragment --><p>A sequence gets iterated: </p> <div class="fragment"><div class="line">&lt;#list zone.memory as mem&gt;</div> <div class="line"> Memory region name $mem.name</div> <div class="line">&lt;/#list</div> <div class="line"></div> <div class="line">Printing a sorted list of all available memory entries by start address</div> <div class="line">\code</div> <div class="line">&lt;#list zone.memory?sort_by(<span class="stringliteral">&quot;start&quot;</span>) as mem&gt;</div> <div class="line"> ${mem.start} ${mem.name}</div> <div class="line">&lt;/#list&gt;</div> </div><!-- fragment --> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/GenDataModel.html
HTML
apache-2.0
7,224
var GenDataModel = [ [ "FreeMarker top-level format", "GenDataModel.html#fp_toplevel", null ], [ "FreeMarker basics", "GenDataModel.html#fm_basics", null ], [ "system element", "fm_system.html", "fm_system" ], [ "zone element", "fm_zone.html", "fm_zone" ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/GenDataModel.js
JavaScript
apache-2.0
274
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>CMSIS-Zone Use Cases</title> <title>CMSIS-Zone (Preview): CMSIS-Zone Use Cases</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('UseCases.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">CMSIS-Zone Use Cases </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p><b>CMSIS-Zone</b> simplifies to manage the complexity and the configuration of modern embedded systems that frequently include multiple processors and/or memory protection hardware. It helps to split the embedded application various projects which creates the need to partition system resources. And it simplifies the consistent configuration of access rights across the system, for example when using an MPU (memory protection unit).</p> <p>The following section describes several uses cases that benefit from <b>CMSIS-Zone</b>.</p> <h1><a class="anchor" id="UseCase_MPU"></a> MPU Protection</h1> <p>Focused on a single core microcontroller one might want to utilize the memory protection unit (MPU) capabilities to segregate parts of an application. Thus the need to partition the system resources accordingly arises.</p> <div class="image"> <img src="mpu.png" alt="mpu.png"/> <div class="caption"> MPU Protection</div></div> <h1><a class="anchor" id="UseCase_TrustZone"></a> TrustZone Partitioning</h1> <p>TrustZone extensions add another degree of segregation which must be handled consistently. In this case one has to handle MPU settings per security context and SAU configuration.</p> <div class="image"> <img src="trustzone.png" alt="trustzone.png"/> <div class="caption"> TrustZone Partitioning and MPU Protection</div></div> <h1><a class="anchor" id="UseCase_MultiCore"></a> Multi-Core Partitioning</h1> <p>Beside traditional single cores asymmetric and hybrid multi-core devices contribute to increasing development complexity for embedded systems. Having multiple cores running different parts of an application concurrently needs a well defined resource assignment to prevent undesired misbehavior.</p> <div class="image"> <img src="multicore.png" alt="multicore.png"/> <div class="caption"> Multi-Core Partitioning</div></div> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/UseCases.html
HTML
apache-2.0
6,913
/* The standard CSS for doxygen */ body, table, div, p, dl { font-family: Lucida Grande, Verdana, Geneva, Arial, sans-serif; font-size: 13px; line-height: 1.3; } /* CMSIS styles */ .style1 { text-align: center; } .style2 { color: #0000FF; font-weight: normal; } .style3 { text-align: left; } .style4 { color: #008000; } .style5 { color: #0000FF; } .style6 { color: #000000; font-style:italic; } .mand { color: #0000FF; } .opt { color: #008000; } .cond { color: #990000; } .choice { background-color:#F7F9D0; } .seq { background-color:#C9DECB; } .group1 { background-color:#F8F1F1; } .group2 { background-color:#DCEDEA; } ul ul { list-style-type: disc; } ul ul ul { list-style-type: disc; } ul.hierarchy { color: green; } em { color: #000000; font-style:italic; } /* CMSIS Tables */ table.cmtab1 { padding: 4px; border-collapse: collapse; border: 1px solid #A3B4D7; text-align: justify; width:70%; } th.cmtab1 { background: #EBEFF6; font-weight: bold; height: 28px; } td.cmtab1 { padding:1px; text-align: left; } table.cmtable { border-collapse:collapse; text-align: justify; } table.cmtable td, table.cmtable th { border: 1px solid #2D4068; padding: 3px 7px 2px; } table.cmtable th { background-color: #EBEFF6; font-size: 110%; padding-bottom: 4px; padding-top: 5px; text-align:left; } td.MonoTxt { font-family:"Arial monospaced for SAP"; } td.XML-Token { azimuth: 180; font-style:italic; color:Maroon; z-index:20; } span.XML-Token { azimuth: 180; font-style:italic; color:Maroon; z-index:20; } span.h2 { font-size: 120%; font-weight: bold; } div.new { background-color:#ccffcc; /* light green */ } div.mod { background-color:#ffe6cc; /* light amber */ } div.del { background-color:#ffcccc; /* light red */ } /* @group Heading Levels */ h1 { font-size: 150%; } .title { font-size: 150%; font-weight: bold; margin: 10px 2px; } h2 { font-size: 120%; } h3 { font-size: 100%; } h1, h2, h3, h4, h5, h6 { -webkit-transition: text-shadow 0.5s linear; -moz-transition: text-shadow 0.5s linear; -ms-transition: text-shadow 0.5s linear; -o-transition: text-shadow 0.5s linear; transition: text-shadow 0.5s linear; margin-right: 15px; } h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { text-shadow: 0 0 15px cyan; } dt { font-weight: bold; } div.multicol { -moz-column-gap: 1em; -webkit-column-gap: 1em; -moz-column-count: 3; -webkit-column-count: 3; } p.startli, p.startdd, p.starttd { margin-top: 2px; } p.endli { margin-bottom: 0px; } p.enddd { margin-bottom: 4px; } p.endtd { margin-bottom: 2px; } /* @end */ caption { font-weight: bold; } span.legend { font-size: 70%; text-align: center; } h3.version { font-size: 90%; text-align: center; } div.qindex, div.navtab{ background-color: #EBEFF6; border: 1px solid #A2B4D8; text-align: center; } div.qindex, div.navpath { width: 100%; line-height: 140%; } div.navtab { margin-right: 15px; } /* @group Link Styling */ a { color: #3A568E; font-weight: normal; text-decoration: none; } .contents a:visited { color: #4464A5; } a:hover { text-decoration: underline; } a.qindex { font-weight: bold; } a.qindexHL { font-weight: bold; background-color: #9AAED5; color: #ffffff; border: 1px double #849CCC; } .contents a.qindexHL:visited { color: #ffffff; } a.el { font-weight: bold; } a.elRef { } a.code, a.code:visited { color: #4665A2; } a.codeRef, a.codeRef:visited { color: #4665A2; } /* @end */ dl.el { margin-left: -1cm; } pre.fragment { border: 1px solid #C4CFE5; background-color: #FBFCFD; padding: 4px 6px; margin: 4px 8px 4px 2px; overflow: auto; word-wrap: break-word; font-size: 9pt; line-height: 125%; font-family: monospace, fixed; font-size: 105%; } div.fragment { padding: 4px; margin: 4px; background-color: #FBFCFD; border: 1px solid #C3CFE6; } div.line { font-family: monospace, fixed; font-size: 13px; line-height: 1.0; text-wrap: unrestricted; white-space: -moz-pre-wrap; /* Moz */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* CSS3 */ word-wrap: break-word; /* IE 5.5+ */ text-indent: -53px; padding-left: 53px; padding-bottom: 0px; margin: 0px; } span.lineno { padding-right: 4px; text-align: right; border-right: 2px solid #0F0; background-color: #E8E8E8; white-space: pre; } span.lineno a { background-color: #D8D8D8; } span.lineno a:hover { background-color: #C8C8C8; } div.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px; padding: 0.2em; border: solid thin #333; border-radius: 0.5em; -webkit-border-radius: .5em; -moz-border-radius: .5em; box-shadow: 2px 2px 3px #999; -webkit-box-shadow: 2px 2px 3px #999; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); } div.groupHeader { margin-left: 16px; margin-top: 12px; font-weight: bold; } div.groupText { margin-left: 16px; font-style: italic; } body { background-color: white; color: black; margin: 0; } div.contents { margin-top: 10px; margin-left: 12px; margin-right: 8px; } td.indexkey { background-color: #EBEFF6; font-weight: bold; border: 1px solid #C3CFE6; margin: 2px 0px 2px 0; padding: 2px 10px; white-space: nowrap; vertical-align: top; } td.indexvalue { background-color: #EBEFF6; border: 1px solid #C3CFE6; padding: 2px 10px; margin: 2px 0px; } tr.memlist { background-color: #EDF1F7; } p.formulaDsp { text-align: center; } img.formulaDsp { } img.formulaInl { vertical-align: middle; } div.center { text-align: center; margin-top: 0px; margin-bottom: 0px; padding: 0px; } div.center img { border: 0px; } address.footer { text-align: right; padding-right: 12px; } img.footer { border: 0px; vertical-align: middle; } /* @group Code Colorization */ span.keyword { color: #008000 } span.keywordtype { color: #604020 } span.keywordflow { color: #e08000 } span.comment { color: #800000 } span.preprocessor { color: #806020 } span.stringliteral { color: #002080 } span.charliteral { color: #008080 } span.vhdldigit { color: #ff00ff } span.vhdlchar { color: #000000 } span.vhdlkeyword { color: #700070 } span.vhdllogic { color: #ff0000 } blockquote { background-color: #F7F8FB; border-left: 2px solid #9AAED5; margin: 0 24px 0 4px; padding: 0 12px 0 16px; } /* @end */ /* .search { color: #003399; font-weight: bold; } form.search { margin-bottom: 0px; margin-top: 0px; } input.search { font-size: 75%; color: #000080; font-weight: normal; background-color: #e8eef2; } */ td.tiny { font-size: 75%; } .dirtab { padding: 4px; border-collapse: collapse; border: 1px solid #A2B4D8; } th.dirtab { background: #EBEFF6; font-weight: bold; } hr { height: 0px; border: none; border-top: 1px solid #4769AD; } hr.footer { height: 1px; } /* @group Member Descriptions */ table.memberdecls { border-spacing: 0px; padding: 0px; } .memberdecls td { -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; -moz-transition-property: background-color, box-shadow; -moz-transition-duration: 0.5s; -ms-transition-property: background-color, box-shadow; -ms-transition-duration: 0.5s; -o-transition-property: background-color, box-shadow; -o-transition-duration: 0.5s; transition-property: background-color, box-shadow; transition-duration: 0.5s; } .memberdecls td.glow { background-color: cyan; box-shadow: 0 0 15px cyan; } .mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams { background-color: #F9FAFC; border: none; margin: 4px; padding: 1px 0 0 8px; } .mdescLeft, .mdescRight { padding: 0px 8px 4px 8px; color: #555; } .memItemLeft, .memItemRight, .memTemplParams { border-top: 1px solid #C3CFE6; } .memItemLeft, .memTemplItemLeft { white-space: nowrap; } .memItemRight { width: 100%; } .memTemplParams { color: #4464A5; white-space: nowrap; } /* @end */ /* @group Member Details */ /* Styles for detailed member documentation */ .memtemplate { font-size: 80%; color: #4464A5; font-weight: normal; margin-left: 9px; } .memnav { background-color: #EBEFF6; border: 1px solid #A2B4D8; text-align: center; margin: 2px; margin-right: 15px; padding: 2px; } .mempage { width: 100%; } .memitem { padding: 0; margin-bottom: 10px; margin-right: 5px; -webkit-transition: box-shadow 0.5s linear; -moz-transition: box-shadow 0.5s linear; -ms-transition: box-shadow 0.5s linear; -o-transition: box-shadow 0.5s linear; transition: box-shadow 0.5s linear; } .memitem.glow { box-shadow: 0 0 15px cyan; } .memname { font-weight: bold; margin-left: 6px; } .memname td { vertical-align: bottom; } .memproto, dl.reflist dt { border-top: 1px solid #A7B8DA; border-left: 1px solid #A7B8DA; border-right: 1px solid #A7B8DA; padding: 6px 0px 6px 0px; color: #233456; font-weight: bold; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E7F3; /* opera specific markup */ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); border-top-right-radius: 4px; border-top-left-radius: 4px; /* firefox specific markup */ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; -moz-border-radius-topright: 4px; -moz-border-radius-topleft: 4px; /* webkit specific markup */ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -webkit-border-top-right-radius: 4px; -webkit-border-top-left-radius: 4px; } .memdoc, dl.reflist dd { border-bottom: 1px solid #A7B8DA; border-left: 1px solid #A7B8DA; border-right: 1px solid #A7B8DA; padding: 6px 10px 2px 10px; background-color: #FBFCFD; border-top-width: 0; background-image:url('nav_g.png'); background-repeat:repeat-x; background-color: #FFFFFF; /* opera specific markup */ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); /* firefox specific markup */ -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; /* webkit specific markup */ -webkit-border-bottom-left-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); } dl.reflist dt { padding: 5px; } dl.reflist dd { margin: 0px 0px 10px 0px; padding: 5px; } .paramkey { text-align: right; } .paramtype { white-space: nowrap; } .paramname { color: #602020; white-space: nowrap; } .paramname em { font-style: normal; } .params, .retval, .exception, .tparams { margin-left: 0px; padding-left: 0px; } .params .paramname, .retval .paramname { font-weight: bold; vertical-align: top; } .params .paramtype { font-style: italic; vertical-align: top; } .params .paramdir { font-family: "courier new",courier,monospace; vertical-align: top; } table.mlabels { border-spacing: 0px; } td.mlabels-left { width: 100%; padding: 0px; } td.mlabels-right { vertical-align: bottom; padding: 0px; white-space: nowrap; } span.mlabels { margin-left: 8px; } span.mlabel { background-color: #708CC4; border-top:1px solid #5072B7; border-left:1px solid #5072B7; border-right:1px solid #C3CFE6; border-bottom:1px solid #C3CFE6; text-shadow: none; color: white; margin-right: 4px; padding: 2px 3px; border-radius: 3px; font-size: 7pt; white-space: nowrap; } /* @end */ /* these are for tree view when not used as main index */ div.directory { margin: 10px 0px; border-top: 1px solid #A8B8D9; border-bottom: 1px solid #A8B8D9; width: 100%; } .directory table { border-collapse:collapse; } .directory td { margin: 0px; padding: 0px; vertical-align: top; } .directory td.entry { white-space: nowrap; padding-right: 6px; } .directory td.entry a { outline:none; } .directory td.desc { width: 100%; padding-left: 6px; padding-right: 6px; border-left: 1px solid rgba(0,0,0,0.05); } .directory tr.even { padding-left: 6px; background-color: #F7F8FB; } .directory img { vertical-align: -30%; } .directory .levels { white-space: nowrap; width: 100%; text-align: right; font-size: 9pt; } .directory .levels span { cursor: pointer; padding-left: 2px; padding-right: 2px; color: #3A568E; } div.dynheader { margin-top: 8px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } address { font-style: normal; color: #293C63; } table.doxtable { border-collapse:collapse; margin-top: 4px; margin-bottom: 4px; } table.doxtable td, table.doxtable th { border: 1px solid #2B4069; padding: 3px 7px 2px; } table.doxtable th { background-color: #EBEFF6; color: #000000; font-size: 110%; padding-bottom: 4px; padding-top: 5px; } table.fieldtable { width: 100%; margin-bottom: 10px; border: 1px solid #A7B8DA; border-spacing: 0px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); } .fieldtable td, .fieldtable th { padding: 3px 7px 2px; } .fieldtable td.fieldtype, .fieldtable td.fieldname { white-space: nowrap; border-right: 1px solid #A7B8DA; border-bottom: 1px solid #A7B8DA; vertical-align: top; } .fieldtable td.fielddoc { border-bottom: 1px solid #A7B8DA; width: 100%; } .fieldtable tr:last-child td { border-bottom: none; } .fieldtable th { background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E7F3; font-size: 90%; color: #233456; padding-bottom: 4px; padding-top: 5px; text-align:left; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom: 1px solid #A7B8DA; } .tabsearch { top: 0px; left: 10px; height: 36px; background-image: url('tab_b.png'); z-index: 101; overflow: hidden; font-size: 13px; } .navpath ul { font-size: 11px; background-image:url('tab_b.png'); background-repeat:repeat-x; height:30px; line-height:30px; color:#889FCE; border:solid 1px #C1CDE5; overflow:hidden; margin:0px; padding:0px; } .navpath li { list-style-type:none; float:left; padding-left:10px; padding-right:15px; background-image:url('bc_s.png'); background-repeat:no-repeat; background-position:right; color:#344D7E; } .navpath li.navelem a { height:32px; display:block; text-decoration: none; outline: none; } .navpath li.navelem a:hover { color:#6583BF; } .navpath li.footer { list-style-type:none; float:right; padding-left:10px; padding-right:15px; background-image:none; background-repeat:no-repeat; background-position:right; color:#344D7E; font-size: 8pt; } div.summary { float: right; font-size: 8pt; padding-right: 5px; width: 50%; text-align: right; } div.summary a { white-space: nowrap; } div.ingroups { margin-left: 5px; font-size: 8pt; padding-left: 5px; width: 50%; text-align: left; } div.ingroups a { white-space: nowrap; } div.header { background-image:url('nav_h.png'); background-repeat:repeat-x; background-color: #F9FAFC; margin: 0px; border-bottom: 1px solid #C3CFE6; } div.headertitle { padding: 5px 5px 5px 7px; } dl { padding: 0 0 0 10px; } /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ dl.section { margin-left: 0px; padding-left: 0px; } dl.note { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #D0C000; } dl.warning, dl.attention { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #FF0000; } dl.pre, dl.post, dl.invariant { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00D000; } dl.deprecated { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #505050; } dl.todo { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00C0E0; } dl.test { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #3030E0; } dl.bug { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #C08050; } dl.section dd { margin-bottom: 6px; } #projectlogo { text-align: center; vertical-align: bottom; border-collapse: separate; } #projectlogo img { border: 0px none; } #projectname { font: 300% Tahoma, Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #titlearea { padding: 0px; margin: 0px; width: 100%; border-bottom: 1px solid #5072B7; } .image { text-align: left; } .dotgraph { text-align: center; } .mscgraph { text-align: center; } .caption { font-weight: bold; } div.zoom { border: 1px solid #8EA4D0; } dl.citelist { margin-bottom:50px; } dl.citelist dt { color:#314877; float:left; font-weight:bold; margin-right:10px; padding:5px; } dl.citelist dd { margin:2px 0; padding:5px 0; } div.toc { padding: 14px 25px; background-color: #F4F6FA; border: 1px solid #D7DFEE; border-radius: 7px 7px 7px 7px; float: right; height: auto; margin: 0 20px 10px 10px; width: 200px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Arial,FreeSans,sans-serif; color: #4464A5; border-bottom: 0 none; margin: 0; } div.toc ul { list-style: none outside none; border: medium none; padding: 0px; } div.toc li.level1 { margin-left: 0px; } div.toc li.level2 { margin-left: 15px; } div.toc li.level3 { margin-left: 30px; } div.toc li.level4 { margin-left: 45px; } .inherit_header { font-weight: bold; color: gray; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .inherit_header td { padding: 6px 0px 2px 5px; } .inherit { display: none; } tr.heading h2 { margin-top: 12px; margin-bottom: 4px; } @media print { #top { display: none; } #side-nav { display: none; } #nav-path { display: none; } body { overflow:visible; } h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } .summary { display: none; } .memitem { page-break-inside: avoid; } #doc-content { margin-left:0 !important; height:auto !important; width:auto !important; overflow:inherit; display:inline; } }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/cmsis.css
CSS
apache-2.0
20,795
/* The standard CSS for doxygen 1.8.6 */ body, table, div, p, dl { font: 400 14px/22px Roboto,sans-serif; } /* @group Heading Levels */ h1.groupheader { font-size: 150%; } .title { font: 400 14px/28px Roboto,sans-serif; font-size: 150%; font-weight: bold; margin: 10px 2px; } h2.groupheader { border-bottom: 1px solid #879ECB; color: #354C7B; font-size: 150%; font-weight: normal; margin-top: 1.75em; padding-top: 8px; padding-bottom: 4px; width: 100%; } h3.groupheader { font-size: 100%; } h1, h2, h3, h4, h5, h6 { -webkit-transition: text-shadow 0.5s linear; -moz-transition: text-shadow 0.5s linear; -ms-transition: text-shadow 0.5s linear; -o-transition: text-shadow 0.5s linear; transition: text-shadow 0.5s linear; margin-right: 15px; } h1.glow, h2.glow, h3.glow, h4.glow, h5.glow, h6.glow { text-shadow: 0 0 15px cyan; } dt { font-weight: bold; } div.multicol { -moz-column-gap: 1em; -webkit-column-gap: 1em; -moz-column-count: 3; -webkit-column-count: 3; } p.startli, p.startdd { margin-top: 2px; } p.starttd { margin-top: 0px; } p.endli { margin-bottom: 0px; } p.enddd { margin-bottom: 4px; } p.endtd { margin-bottom: 2px; } /* @end */ caption { font-weight: bold; } span.legend { font-size: 70%; text-align: center; } h3.version { font-size: 90%; text-align: center; } div.qindex, div.navtab{ background-color: #EBEFF6; border: 1px solid #A3B4D7; text-align: center; } div.qindex, div.navpath { width: 100%; line-height: 140%; } div.navtab { margin-right: 15px; } /* @group Link Styling */ a { color: #3D578C; font-weight: normal; text-decoration: none; } .contents a:visited { color: #4665A2; } a:hover { text-decoration: underline; } a.qindex { font-weight: bold; } a.qindexHL { font-weight: bold; background-color: #9CAFD4; color: #ffffff; border: 1px double #869DCA; } .contents a.qindexHL:visited { color: #ffffff; } a.el { font-weight: bold; } a.elRef { } a.code, a.code:visited, a.line, a.line:visited { color: #4665A2; } a.codeRef, a.codeRef:visited, a.lineRef, a.lineRef:visited { color: #4665A2; } /* @end */ dl.el { margin-left: -1cm; } pre.fragment { border: 1px solid #C4CFE5; background-color: #FBFCFD; padding: 4px 6px; margin: 4px 8px 4px 2px; overflow: auto; word-wrap: break-word; font-size: 9pt; line-height: 125%; font-family: monospace, fixed; font-size: 105%; } div.fragment { padding: 4px 6px; margin: 4px 8px 4px 2px; background-color: #FBFCFD; border: 1px solid #C4CFE5; } div.line { font-family: monospace, fixed; font-size: 13px; min-height: 13px; line-height: 1.0; text-wrap: unrestricted; white-space: -moz-pre-wrap; /* Moz */ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ white-space: pre-wrap; /* CSS3 */ word-wrap: break-word; /* IE 5.5+ */ text-indent: -53px; padding-left: 53px; padding-bottom: 0px; margin: 0px; -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; -moz-transition-property: background-color, box-shadow; -moz-transition-duration: 0.5s; -ms-transition-property: background-color, box-shadow; -ms-transition-duration: 0.5s; -o-transition-property: background-color, box-shadow; -o-transition-duration: 0.5s; transition-property: background-color, box-shadow; transition-duration: 0.5s; } div.line.glow { background-color: cyan; box-shadow: 0 0 10px cyan; } span.lineno { padding-right: 4px; text-align: right; border-right: 2px solid #0F0; background-color: #E8E8E8; white-space: pre; } span.lineno a { background-color: #D8D8D8; } span.lineno a:hover { background-color: #C8C8C8; } div.ah { background-color: black; font-weight: bold; color: #ffffff; margin-bottom: 3px; margin-top: 3px; padding: 0.2em; border: solid thin #333; border-radius: 0.5em; -webkit-border-radius: .5em; -moz-border-radius: .5em; box-shadow: 2px 2px 3px #999; -webkit-box-shadow: 2px 2px 3px #999; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; background-image: -webkit-gradient(linear, left top, left bottom, from(#eee), to(#000),color-stop(0.3, #444)); background-image: -moz-linear-gradient(center top, #eee 0%, #444 40%, #000); } div.groupHeader { margin-left: 16px; margin-top: 12px; font-weight: bold; } div.groupText { margin-left: 16px; font-style: italic; } body { background-color: white; color: black; margin: 0; } div.contents { margin-top: 10px; margin-left: 12px; margin-right: 8px; } td.indexkey { background-color: #EBEFF6; font-weight: bold; border: 1px solid #C4CFE5; margin: 2px 0px 2px 0; padding: 2px 10px; white-space: nowrap; vertical-align: top; } td.indexvalue { background-color: #EBEFF6; border: 1px solid #C4CFE5; padding: 2px 10px; margin: 2px 0px; } tr.memlist { background-color: #EEF1F7; } p.formulaDsp { text-align: center; } img.formulaDsp { } img.formulaInl { vertical-align: middle; } div.center { text-align: center; margin-top: 0px; margin-bottom: 0px; padding: 0px; } div.center img { border: 0px; } address.footer { text-align: right; padding-right: 12px; } img.footer { border: 0px; vertical-align: middle; } /* @group Code Colorization */ span.keyword { color: #008000 } span.keywordtype { color: #604020 } span.keywordflow { color: #e08000 } span.comment { color: #800000 } span.preprocessor { color: #806020 } span.stringliteral { color: #002080 } span.charliteral { color: #008080 } span.vhdldigit { color: #ff00ff } span.vhdlchar { color: #000000 } span.vhdlkeyword { color: #700070 } span.vhdllogic { color: #ff0000 } blockquote { background-color: #F7F8FB; border-left: 2px solid #9CAFD4; margin: 0 24px 0 4px; padding: 0 12px 0 16px; } /* @end */ /* .search { color: #003399; font-weight: bold; } form.search { margin-bottom: 0px; margin-top: 0px; } input.search { font-size: 75%; color: #000080; font-weight: normal; background-color: #e8eef2; } */ td.tiny { font-size: 75%; } .dirtab { padding: 4px; border-collapse: collapse; border: 1px solid #A3B4D7; } th.dirtab { background: #EBEFF6; font-weight: bold; } hr { height: 0px; border: none; border-top: 1px solid #4A6AAA; } hr.footer { height: 1px; } /* @group Member Descriptions */ table.memberdecls { border-spacing: 0px; padding: 0px; } .memberdecls td, .fieldtable tr { -webkit-transition-property: background-color, box-shadow; -webkit-transition-duration: 0.5s; -moz-transition-property: background-color, box-shadow; -moz-transition-duration: 0.5s; -ms-transition-property: background-color, box-shadow; -ms-transition-duration: 0.5s; -o-transition-property: background-color, box-shadow; -o-transition-duration: 0.5s; transition-property: background-color, box-shadow; transition-duration: 0.5s; } .memberdecls td.glow, .fieldtable tr.glow { background-color: cyan; box-shadow: 0 0 15px cyan; } .mdescLeft, .mdescRight, .memItemLeft, .memItemRight, .memTemplItemLeft, .memTemplItemRight, .memTemplParams { background-color: #F9FAFC; border: none; margin: 4px; padding: 1px 0 0 8px; } .mdescLeft, .mdescRight { padding: 0px 8px 4px 8px; color: #555; } .memSeparator { border-bottom: 1px solid #DEE4F0; line-height: 1px; margin: 0px; padding: 0px; } .memItemLeft, .memTemplItemLeft { white-space: nowrap; } .memItemRight { width: 100%; } .memTemplParams { color: #4665A2; white-space: nowrap; font-size: 80%; } /* @end */ /* @group Member Details */ /* Styles for detailed member documentation */ .memtemplate { font-size: 80%; color: #4665A2; font-weight: normal; margin-left: 9px; } .memnav { background-color: #EBEFF6; border: 1px solid #A3B4D7; text-align: center; margin: 2px; margin-right: 15px; padding: 2px; } .mempage { width: 100%; } .memitem { padding: 0; margin-bottom: 10px; margin-right: 5px; -webkit-transition: box-shadow 0.5s linear; -moz-transition: box-shadow 0.5s linear; -ms-transition: box-shadow 0.5s linear; -o-transition: box-shadow 0.5s linear; transition: box-shadow 0.5s linear; display: table !important; width: 100%; } .memitem.glow { box-shadow: 0 0 15px cyan; } .memname { font-weight: bold; margin-left: 6px; } .memname td { vertical-align: bottom; } .memproto, dl.reflist dt { border-top: 1px solid #A8B8D9; border-left: 1px solid #A8B8D9; border-right: 1px solid #A8B8D9; padding: 6px 0px 6px 0px; color: #253555; font-weight: bold; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E8F2; /* opera specific markup */ box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); border-top-right-radius: 4px; border-top-left-radius: 4px; /* firefox specific markup */ -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; -moz-border-radius-topright: 4px; -moz-border-radius-topleft: 4px; /* webkit specific markup */ -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); -webkit-border-top-right-radius: 4px; -webkit-border-top-left-radius: 4px; } .memdoc, dl.reflist dd { border-bottom: 1px solid #A8B8D9; border-left: 1px solid #A8B8D9; border-right: 1px solid #A8B8D9; padding: 6px 10px 2px 10px; background-color: #FBFCFD; border-top-width: 0; background-image:url('nav_g.png'); background-repeat:repeat-x; background-color: #FFFFFF; /* opera specific markup */ border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); /* firefox specific markup */ -moz-border-radius-bottomleft: 4px; -moz-border-radius-bottomright: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 5px 5px 5px; /* webkit specific markup */ -webkit-border-bottom-left-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); } dl.reflist dt { padding: 5px; } dl.reflist dd { margin: 0px 0px 10px 0px; padding: 5px; } .paramkey { text-align: right; } .paramtype { white-space: nowrap; } .paramname { color: #602020; white-space: nowrap; } .paramname em { font-style: normal; } .paramname code { line-height: 14px; } .params, .retval, .exception, .tparams { margin-left: 0px; padding-left: 0px; } .params .paramname, .retval .paramname { font-weight: bold; vertical-align: top; } .params .paramtype { font-style: italic; vertical-align: top; } .params .paramdir { font-family: "courier new",courier,monospace; vertical-align: top; } table.mlabels { border-spacing: 0px; } td.mlabels-left { width: 100%; padding: 0px; } td.mlabels-right { vertical-align: bottom; padding: 0px; white-space: nowrap; } span.mlabels { margin-left: 8px; } span.mlabel { background-color: #728DC1; border-top:1px solid #5373B4; border-left:1px solid #5373B4; border-right:1px solid #C4CFE5; border-bottom:1px solid #C4CFE5; text-shadow: none; color: white; margin-right: 4px; padding: 2px 3px; border-radius: 3px; font-size: 7pt; white-space: nowrap; vertical-align: middle; } /* @end */ /* these are for tree view when not used as main index */ div.directory { margin: 10px 0px; border-top: 1px solid #A8B8D9; border-bottom: 1px solid #A8B8D9; width: 100%; } .directory table { border-collapse:collapse; } .directory td { margin: 0px; padding: 0px; vertical-align: top; } .directory td.entry { white-space: nowrap; padding-right: 6px; padding-top: 3px; } .directory td.entry a { outline:none; } .directory td.entry a img { border: none; } .directory td.desc { width: 100%; padding-left: 6px; padding-right: 6px; padding-top: 3px; border-left: 1px solid rgba(0,0,0,0.05); } .directory tr.even { padding-left: 6px; background-color: #F7F8FB; } .directory img { vertical-align: -30%; } .directory .levels { white-space: nowrap; width: 100%; text-align: right; font-size: 9pt; } .directory .levels span { cursor: pointer; padding-left: 2px; padding-right: 2px; color: #3D578C; } div.dynheader { margin-top: 8px; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } address { font-style: normal; color: #2A3D61; } table.doxtable { border-collapse:collapse; margin-top: 4px; margin-bottom: 4px; } table.doxtable td, table.doxtable th { border: 1px solid #2D4068; padding: 3px 7px 2px; } table.doxtable th { background-color: #374F7F; color: #FFFFFF; font-size: 110%; padding-bottom: 4px; padding-top: 5px; } table.fieldtable { /*width: 100%;*/ margin-bottom: 10px; border: 1px solid #A8B8D9; border-spacing: 0px; -moz-border-radius: 4px; -webkit-border-radius: 4px; border-radius: 4px; -moz-box-shadow: rgba(0, 0, 0, 0.15) 2px 2px 2px; -webkit-box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.15); } .fieldtable td, .fieldtable th { padding: 3px 7px 2px; } .fieldtable td.fieldtype, .fieldtable td.fieldname { white-space: nowrap; border-right: 1px solid #A8B8D9; border-bottom: 1px solid #A8B8D9; vertical-align: top; } .fieldtable td.fieldname { padding-top: 3px; } .fieldtable td.fielddoc { border-bottom: 1px solid #A8B8D9; /*width: 100%;*/ } .fieldtable td.fielddoc p:first-child { margin-top: 0px; } .fieldtable td.fielddoc p:last-child { margin-bottom: 2px; } .fieldtable tr:last-child td { border-bottom: none; } .fieldtable th { background-image:url('nav_f.png'); background-repeat:repeat-x; background-color: #E2E8F2; font-size: 90%; color: #253555; padding-bottom: 4px; padding-top: 5px; text-align:left; -moz-border-radius-topleft: 4px; -moz-border-radius-topright: 4px; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; border-bottom: 1px solid #A8B8D9; } .tabsearch { top: 0px; left: 10px; height: 36px; background-image: url('tab_b.png'); z-index: 101; overflow: hidden; font-size: 13px; } .navpath ul { font-size: 11px; background-image:url('tab_b.png'); background-repeat:repeat-x; background-position: 0 -5px; height:30px; line-height:30px; color:#8AA0CC; border:solid 1px #C2CDE4; overflow:hidden; margin:0px; padding:0px; } .navpath li { list-style-type:none; float:left; padding-left:10px; padding-right:15px; background-image:url('bc_s.png'); background-repeat:no-repeat; background-position:right; color:#364D7C; } .navpath li.navelem a { height:32px; display:block; text-decoration: none; outline: none; color: #283A5D; font-family: 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; text-shadow: 0px 1px 1px rgba(255, 255, 255, 0.9); text-decoration: none; } .navpath li.navelem a:hover { color:#6884BD; } .navpath li.footer { list-style-type:none; float:right; padding-left:10px; padding-right:15px; background-image:none; background-repeat:no-repeat; background-position:right; color:#364D7C; font-size: 8pt; } div.summary { float: right; font-size: 8pt; padding-right: 5px; width: 50%; text-align: right; } div.summary a { white-space: nowrap; } div.ingroups { font-size: 8pt; width: 50%; text-align: left; } div.ingroups a { white-space: nowrap; } div.header { background-image:url('nav_h.png'); background-repeat:repeat-x; background-color: #F9FAFC; margin: 0px; border-bottom: 1px solid #C4CFE5; } div.headertitle { padding: 5px 5px 5px 10px; } dl { padding: 0 0 0 10px; } /* dl.note, dl.warning, dl.attention, dl.pre, dl.post, dl.invariant, dl.deprecated, dl.todo, dl.test, dl.bug */ dl.section { margin-left: 0px; padding-left: 0px; } dl.note { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #D0C000; } dl.warning, dl.attention { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #FF0000; } dl.pre, dl.post, dl.invariant { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00D000; } dl.deprecated { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #505050; } dl.todo { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #00C0E0; } dl.test { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #3030E0; } dl.bug { margin-left:-7px; padding-left: 3px; border-left:4px solid; border-color: #C08050; } dl.section dd { margin-bottom: 6px; } #projectlogo { text-align: center; vertical-align: bottom; border-collapse: separate; } #projectlogo img { border: 0px none; } #projectname { font: 300% Tahoma, Arial,sans-serif; margin: 0px; padding: 2px 0px; } #projectbrief { font: 120% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #projectnumber { font: 50% Tahoma, Arial,sans-serif; margin: 0px; padding: 0px; } #titlearea { padding: 0px; margin: 0px; width: 100%; border-bottom: 1px solid #5373B4; } .image { text-align: center; } .dotgraph { text-align: center; } .mscgraph { text-align: center; } .diagraph { text-align: center; } .caption { font-weight: bold; } div.zoom { border: 1px solid #90A5CE; } dl.citelist { margin-bottom:50px; } dl.citelist dt { color:#334975; float:left; font-weight:bold; margin-right:10px; padding:5px; } dl.citelist dd { margin:2px 0; padding:5px 0; } div.toc { padding: 14px 25px; background-color: #F4F6FA; border: 1px solid #D8DFEE; border-radius: 7px 7px 7px 7px; float: right; height: auto; margin: 0 20px 10px 10px; width: 200px; } div.toc li { background: url("bdwn.png") no-repeat scroll 0 5px transparent; font: 10px/1.2 Verdana,DejaVu Sans,Geneva,sans-serif; margin-top: 5px; padding-left: 10px; padding-top: 2px; } div.toc h3 { font: bold 12px/1.2 Arial,FreeSans,sans-serif; color: #4665A2; border-bottom: 0 none; margin: 0; } div.toc ul { list-style: none outside none; border: medium none; padding: 0px; } div.toc li.level1 { margin-left: 0px; } div.toc li.level2 { margin-left: 15px; } div.toc li.level3 { margin-left: 30px; } div.toc li.level4 { margin-left: 45px; } .inherit_header { font-weight: bold; color: gray; cursor: pointer; -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .inherit_header td { padding: 6px 0px 2px 5px; } .inherit { display: none; } tr.heading h2 { margin-top: 12px; margin-bottom: 4px; } /* tooltip related style info */ .ttc { position: absolute; display: none; } #powerTip { cursor: default; white-space: nowrap; background-color: white; border: 1px solid gray; border-radius: 4px 4px 4px 4px; box-shadow: 1px 1px 7px gray; display: none; font-size: smaller; max-width: 80%; opacity: 0.9; padding: 1ex 1em 1em; position: absolute; z-index: 2147483647; } #powerTip div.ttdoc { color: grey; font-style: italic; } #powerTip div.ttname a { font-weight: bold; } #powerTip div.ttname { font-weight: bold; } #powerTip div.ttdeci { color: #006318; } #powerTip div { margin: 0px; padding: 0px; font: 12px/16px Roboto,sans-serif; } #powerTip:before, #powerTip:after { content: ""; position: absolute; margin: 0px; } #powerTip.n:after, #powerTip.n:before, #powerTip.s:after, #powerTip.s:before, #powerTip.w:after, #powerTip.w:before, #powerTip.e:after, #powerTip.e:before, #powerTip.ne:after, #powerTip.ne:before, #powerTip.se:after, #powerTip.se:before, #powerTip.nw:after, #powerTip.nw:before, #powerTip.sw:after, #powerTip.sw:before { border: solid transparent; content: " "; height: 0; width: 0; position: absolute; } #powerTip.n:after, #powerTip.s:after, #powerTip.w:after, #powerTip.e:after, #powerTip.nw:after, #powerTip.ne:after, #powerTip.sw:after, #powerTip.se:after { border-color: rgba(255, 255, 255, 0); } #powerTip.n:before, #powerTip.s:before, #powerTip.w:before, #powerTip.e:before, #powerTip.nw:before, #powerTip.ne:before, #powerTip.sw:before, #powerTip.se:before { border-color: rgba(128, 128, 128, 0); } #powerTip.n:after, #powerTip.n:before, #powerTip.ne:after, #powerTip.ne:before, #powerTip.nw:after, #powerTip.nw:before { top: 100%; } #powerTip.n:after, #powerTip.ne:after, #powerTip.nw:after { border-top-color: #ffffff; border-width: 10px; margin: 0px -10px; } #powerTip.n:before { border-top-color: #808080; border-width: 11px; margin: 0px -11px; } #powerTip.n:after, #powerTip.n:before { left: 50%; } #powerTip.nw:after, #powerTip.nw:before { right: 14px; } #powerTip.ne:after, #powerTip.ne:before { left: 14px; } #powerTip.s:after, #powerTip.s:before, #powerTip.se:after, #powerTip.se:before, #powerTip.sw:after, #powerTip.sw:before { bottom: 100%; } #powerTip.s:after, #powerTip.se:after, #powerTip.sw:after { border-bottom-color: #ffffff; border-width: 10px; margin: 0px -10px; } #powerTip.s:before, #powerTip.se:before, #powerTip.sw:before { border-bottom-color: #808080; border-width: 11px; margin: 0px -11px; } #powerTip.s:after, #powerTip.s:before { left: 50%; } #powerTip.sw:after, #powerTip.sw:before { right: 14px; } #powerTip.se:after, #powerTip.se:before { left: 14px; } #powerTip.e:after, #powerTip.e:before { left: 100%; } #powerTip.e:after { border-left-color: #ffffff; border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.e:before { border-left-color: #808080; border-width: 11px; top: 50%; margin-top: -11px; } #powerTip.w:after, #powerTip.w:before { right: 100%; } #powerTip.w:after { border-right-color: #ffffff; border-width: 10px; top: 50%; margin-top: -10px; } #powerTip.w:before { border-right-color: #808080; border-width: 11px; top: 50%; margin-top: -11px; } @media print { #top { display: none; } #side-nav { display: none; } #nav-path { display: none; } body { overflow:visible; } h1, h2, h3, h4, h5, h6 { page-break-after: avoid; } .summary { display: none; } .memitem { page-break-inside: avoid; } #doc-content { margin-left:0 !important; height:auto !important; width:auto !important; overflow:inherit; display:inline; } }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/doxygen.css
CSS
apache-2.0
23,935
function toggleVisibility(linkObj) { var base = $(linkObj).attr('id'); var summary = $('#'+base+'-summary'); var content = $('#'+base+'-content'); var trigger = $('#'+base+'-trigger'); var src=$(trigger).attr('src'); if (content.is(':visible')===true) { content.hide(); summary.show(); $(linkObj).addClass('closed').removeClass('opened'); $(trigger).attr('src',src.substring(0,src.length-8)+'closed.png'); } else { content.show(); summary.hide(); $(linkObj).removeClass('closed').addClass('opened'); $(trigger).attr('src',src.substring(0,src.length-10)+'open.png'); } return false; } function updateStripes() { $('table.directory tr'). removeClass('even').filter(':visible:even').addClass('even'); } function toggleLevel(level) { $('table.directory tr').each(function(){ var l = this.id.split('_').length-1; var i = $('#img'+this.id.substring(3)); var a = $('#arr'+this.id.substring(3)); if (l<level+1) { i.attr('src','ftv2folderopen.png'); a.attr('src','ftv2mnode.png'); $(this).show(); } else if (l==level+1) { i.attr('src','ftv2folderclosed.png'); a.attr('src','ftv2pnode.png'); $(this).show(); } else { $(this).hide(); } }); updateStripes(); } function toggleFolder(id) { //The clicked row var currentRow = $('#row_'+id); var currentRowImages = currentRow.find("img"); //All rows after the clicked row var rows = currentRow.nextAll("tr"); //Only match elements AFTER this one (can't hide elements before) var childRows = rows.filter(function() { var re = new RegExp('^row_'+id+'\\d+_$', "i"); //only one sub return this.id.match(re); }); //First row is visible we are HIDING if (childRows.filter(':first').is(':visible')===true) { currentRowImages.filter("[id^=arr]").attr('src', 'ftv2pnode.png'); currentRowImages.filter("[id^=img]").attr('src', 'ftv2folderclosed.png'); rows.filter("[id^=row_"+id+"]").hide(); } else { //We are SHOWING //All sub images var childImages = childRows.find("img"); var childImg = childImages.filter("[id^=img]"); var childArr = childImages.filter("[id^=arr]"); currentRow.find("[id^=arr]").attr('src', 'ftv2mnode.png'); //open row currentRow.find("[id^=img]").attr('src', 'ftv2folderopen.png'); //open row childImg.attr('src','ftv2folderclosed.png'); //children closed childArr.attr('src','ftv2pnode.png'); //children closed childRows.show(); //show all children } updateStripes(); } function toggleInherit(id) { var rows = $('tr.inherit.'+id); var img = $('tr.inherit_header.'+id+' img'); var src = $(img).attr('src'); if (rows.filter(':first').is(':visible')===true) { rows.css('display','none'); $(img).attr('src',src.substring(0,src.length-8)+'closed.png'); } else { rows.css('display','table-row'); // using show() causes jump in firefox $(img).attr('src',src.substring(0,src.length-10)+'open.png'); } }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/dynsections.js
JavaScript
apache-2.0
2,983
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>interrupt[n] sequence element</title> <title>CMSIS-Zone (Preview): interrupt[n] sequence element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_interrupt.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">interrupt[n] sequence element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_interrupt.html">interrupt[n] sequence element</a> lists all interrupt sources available in the system.</p> <table class="cmtable" summary="Element: interrupt[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> s </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.interrupt[<em>n</em>].name </td><td>The name of this interrupt. </td><td>xs:string </td></tr> <tr> <td>.interrupt[<em>n</em>].irqn </td><td>The interrupt number. </td><td>NonNegativeInteger </td></tr> <tr> <td>.interrupt[<em>n</em>].security </td><td>The <a class="el" href="zoneFormat.html#security">security</a> setting for this interrupt. </td><td>SecurityTypeEnum/xs:string </td></tr> <tr> <td>.interrupt[<em>n</em>].security.s </td><td>Peripheral with related interrupt is assigned to <em>"secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.interrupt[<em>n</em>].security.n </td><td>Peripheral with related interrupt is assigned to <em>"non-secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.interrupt[<em>n</em>].info </td><td>Brief description of the interrupt source. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_system.html">system element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_interrupt.html
HTML
apache-2.0
6,604
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>../memory[n] sequence element</title> <title>CMSIS-Zone (Preview): ../memory[n] sequence element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_memory.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">../memory[n] sequence element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_memory.html">../memory[n] sequence element</a> provides a sequence of memory information.</p> <table class="cmtable" summary="Element: memory[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <td><a class="el" href="fm_zone.html">zone</a> </td><td colspan="3"><a class="el" href="fm_zone.html">zone element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.memory[<em>n</em>] </td><td>Sequence of memory region information. </td><td>sequence </td></tr> <tr> <td>.memory[<em>n</em>].name </td><td>The name of this memory region. </td><td>xs:string </td></tr> <tr> <td>.memory[<em>n</em>].type </td><td>The type of memory in this region ("RAM" or "ROM"). </td><td>MemoryTypeEnum </td></tr> <tr> <td>.memory[<em>n</em>].start </td><td>The logical start address of the memory region in the address map. </td><td>NonNegativeInteger </td></tr> <tr> <td>.memory[<em>n</em>].size </td><td>The size (in bytes) of the memory region. </td><td>NonNegativeInteger </td></tr> <tr> <td>.memory[<em>n</em>].security </td><td>The <a class="el" href="zoneFormat.html#security">security</a> setting for this memory region. </td><td>SecurityType </td></tr> <tr> <td>.memory[<em>n</em>].security.c </td><td>Memory has non-secure callable attribute set. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].security.s </td><td>Memory is access from <em>"secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].security.n </td><td>Memory is access from <em>"non-secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].access </td><td>The <a class="el" href="zoneFormat.html#access">access</a> permissions for this memory region in the following separate fields. </td><td>AccessType </td></tr> <tr> <td>.memory[<em>n</em>].access.r </td><td>The <em>read</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].access.w </td><td>The <em>write</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].access.x </td><td>The <em>execution</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].access.p </td><td>The <em>peripheral</em> <a class="el" href="zoneFormat.html#access">access</a> information. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].privilege </td><td>The <a class="el" href="zoneFormat.html#privilege">privilege type</a> settings for this memory region in the following separate fields. </td><td>PrivilegeType </td></tr> <tr> <td>.memory[<em>n</em>].privilege.p </td><td>The <em>privileged</em> <em>level</em> setting of <a class="el" href="zoneFormat.html#privilege">privilege type</a>. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].privilege.u </td><td>The <em>unprivileged</em> <em>level</em> setting of <a class="el" href="zoneFormat.html#privilege">privilege type</a>. </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].startup </td><td>"1" specifies that this region is used for the startup code of the application. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].uninit </td><td>"1" specifies that this region is not zero initialized during startup. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].shared </td><td>"1" specifies that this region is used by multiple zones. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].dma </td><td>"1" specifies that this region is accessed by a DMA controller. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.memory[<em>n</em>].info </td><td>Brief description of the memory region. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_zone.html">zone element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_memory.html
HTML
apache-2.0
9,331
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>mpc_setup[n] element</title> <title>CMSIS-Zone (Preview): mpc_setup[n] element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_mpc_setup.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">mpc_setup[n] element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_mpc_setup.html">mpc_setup[n] element</a> contains a sequence of device specific configuration for the setup of the Memory Protection Controller (MPC).</p> <table class="cmtable" summary="Element: mpc_setup[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.mpc_setup[<em>n</em>].name </td><td>The name of the base register that controls the MPC. </td><td>xs:string </td></tr> <tr> <td>.mpc_setup[<em>n</em>].memory </td><td>The name of the physical memory region that is connected via the MPC. </td><td>xs:string </td></tr> <tr> <td>.mpc_setup[<em>n</em>].blk_size </td><td>The block size information that CMSIS-Zone used for LUT generation. </td><td>NonNegativeInteger </td></tr> <tr> <td>.mpc_setup[<em>n</em>].S_bit[<em>m</em>] </td><td>A list of bit values for Secure attribute that are used to compose the LUT. </td><td>NonNegativeInteger </td></tr> <tr> <td>.mpc_setup[<em>n</em>].P_bit[<em>m</em>] </td><td>A list of bit values for Privileged attribute that are used to compose the LUT. </td><td>NonNegativeInteger </td></tr> <tr> <td>.mpc_setup[<em>n</em>].bits_comment[<em>m</em>] </td><td>The memory region information for source code comments that relate to S_bits or P_bits. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_system.html">system element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_mpc_setup.html
HTML
apache-2.0
6,758
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>mpu_setup element</title> <title>CMSIS-Zone (Preview): mpu_setup element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_mpu_setup.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">mpu_setup element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_mpu_setup.html">mpu_setup element</a> contains the configuration information for the Memory Protection Unit (MPU).</p> <table class="cmtable" summary="Element: mpu_setup"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">zone</a> </td><td colspan="3"><a class="el" href="fm_zone.html">zone element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>mpu_setup.type </td><td>Implementation of the MPU ("v7M" or "v8M"). </td><td>xs:string </td></tr> <tr> <td>mpu_setup.region[<em>n</em>] </td><td>Sequence of MPU region settings. </td><td>sequence </td></tr> <tr> <td>mpu_setup.region[<em>n</em>].no </td><td>Number of the region. </td><td>xs:string </td></tr> <tr> <td>mpu_setup.region[<em>n</em>].BaseAddress </td><td>The base address of the region. </td><td>xs:string </td></tr> <tr> <td>mpu_setup.region[<em>n</em>].RASR </td><td>The MPU region attribute and size register value. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_zone.html">zone element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_mpu_setup.html
HTML
apache-2.0
6,300
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>../peripheral[n] element</title> <title>CMSIS-Zone (Preview): ../peripheral[n] element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_peripheral.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">../peripheral[n] element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_peripheral.html">../peripheral[n] element</a> contains a sequence of all peripherals that are accessible in the zone (or system partition).</p> <table class="cmtable" summary="Element: peripheral[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="2"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <td><a class="el" href="fm_zone.html">zone</a> </td><td colspan="2"><a class="el" href="fm_zone.html">zone element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.peripheral[<em>n</em>].name </td><td>The name of the peripheral. </td><td>xs:string </td></tr> <tr> <td>.peripheral[<em>n</em>].group </td><td>The name of the peripheral group that this peripheral belongs too. </td><td>xs:string </td></tr> <tr> <td>.peripheral[<em>n</em>].start </td><td>The logical start address of the peripheral in the address map. </td><td>NonNegativeInteger </td></tr> <tr> <td>.peripheral[<em>n</em>].size </td><td>The size (in bytes) of the peripheral. </td><td>NonNegativeInteger </td></tr> <tr> <td>.peripheral[<em>n</em>].security </td><td>The <a class="el" href="zoneFormat.html#security">security</a> setting for this peripheral. </td><td>SecurityType </td></tr> <tr> <td>.peripheral[<em>n</em>].security.s </td><td>Peripheral is assigned to <em>"secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].security.n </td><td>Peripheral is assigned to <em>"non-secure"</em> state. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].access </td><td>The <a class="el" href="zoneFormat.html#access">access</a> permissions for this peripheral in the following separate fields. </td><td>AccessType </td></tr> <tr> <td>.peripheral[<em>n</em>].access.r </td><td>The <em>read</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].access.w </td><td>The <em>write</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].access.x </td><td>The <em>execution</em> <a class="el" href="zoneFormat.html#access">access</a> permission. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].access.p </td><td>The <em>peripheral</em> <a class="el" href="zoneFormat.html#access">access</a> information. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].privilege </td><td>The <a class="el" href="zoneFormat.html#privilege">privilege type</a> settings for this peripheral in the following separate fields. </td><td>PrivilegeType </td></tr> <tr> <td>.peripheral[<em>n</em>].privilege.p </td><td>The <em>privileged</em> <em>level</em> setting of <a class="el" href="zoneFormat.html#privilege">privilege type</a>. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].privilege.u </td><td>The <em>unprivileged</em> <em>level</em> setting of <a class="el" href="zoneFormat.html#privilege">privilege type</a>. </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].shared </td><td>"1" specifies that this peripheral is used by multiple zones. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].dma </td><td>"1" specifies that this peripheral is accessed by a DMA controller. Default value is "0". </td><td>xs:boolean </td></tr> <tr> <td>.peripheral[<em>n</em>].info </td><td>Brief description of the peripheral region. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_zone.html">zone element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_peripheral.html
HTML
apache-2.0
8,874
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>processor[n] sequence element</title> <title>CMSIS-Zone (Preview): processor[n] sequence element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_processor.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">processor[n] sequence element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_processor.html">processor[n] sequence element</a> provides a sequence of processor elements that are in the system.</p> <table class="cmtable" summary="Element: processor[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.processor[<em>n</em>].Pname </td><td>Name of the processor core. </td><td>RestrictedString </td></tr> <tr> <td>.processor[<em>n</em>].DnumInterrupts </td><td>Number of NVIC interrupts sources available to the processor core (excludes exception vectors). </td><td>NonNegativeInteger </td></tr> <tr> <td>.processor[<em>n</em>].DnumSauRegions </td><td>Number of regions in the Security Attribution Unit (SAU) of the processor core. </td><td>NonNegativeInteger </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_system.html">system element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_processor.html
HTML
apache-2.0
6,255
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>reg_setup[n] element</title> <title>CMSIS-Zone (Preview): reg_setup[n] element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_reg_setup.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">reg_setup[n] element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_reg_setup.html">reg_setup[n] element</a> contains a sequence of device specific configuration for the setup of the interrupts.</p> <table class="cmtable" summary="Element: reg_setup[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.reg_setup[<em>n</em>].name </td><td>The name of the register or array that holds the configuration information. </td><td>xs:string </td></tr> <tr> <td>.reg_setup[<em>n</em>].index </td><td>The index value for the register array. </td><td>NonNegativeInteger </td></tr> <tr> <td>.reg_setup[<em>n</em>].value[<em>m</em>] </td><td>An array with register setup values (corresponds to .peripheral[<em>m</em>] below. </td><td>NonNegativeInteger </td></tr> <tr> <td>.reg_setup[<em>n</em>].peripheral[<em>m</em>] </td><td>An array with the peripheral names that setup belongs too. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_system.html">system element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_reg_setup.html
HTML
apache-2.0
6,374
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>sau[n] sequence element</title> <title>CMSIS-Zone (Preview): sau[n] sequence element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_sau.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">sau[n] sequence element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_sau.html">sau[n] sequence element</a> lists all SAU regions for initialization in this system.</p> <p>It lists all SAU regions that require either non-secure access or non-secure callable attribute. The SAU region list is generated from:</p> <ul> <li>setup information from <a class="el" href="xml_sau_init.html#xml_si_region">/rzone/sau_init/region element</a></li> <li>memory regions that are assigned to zones with non-secure domain.</li> <li>memory regions that are configured as secure, non-secure callable.</li> </ul> <table class="cmtable" summary="Element: sau[n]"> <tr> <th>Parent Element </th><th colspan="2">Element Chain </th></tr> <tr> <td><a class="el" href="fm_system.html">system</a> </td><td colspan="3"><a class="el" href="fm_system.html">system element</a> </td></tr> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.sau[<em>n</em>].start </td><td>The logical start address for the region. </td><td>xs:string </td></tr> <tr> <td>.sau[<em>n</em>].end </td><td>The logical end address for the region. </td><td>xs:string </td></tr> <tr> <td>.sau[<em>n</em>].nsc </td><td>If set to 1 the region is secure, non-secure callable. </td><td>SecurityTypeEnum/xs:string </td></tr> <tr> <td>.sau[<em>n</em>].info </td><td>List of memory regions or info from <a class="el" href="xml_sau_init.html#xml_si_region">/rzone/sau_init/region element</a>. </td><td>xs:string </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li><li class="navelem"><a class="el" href="fm_system.html">system element</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_sau.html
HTML
apache-2.0
6,710
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>system element</title> <title>CMSIS-Zone (Preview): system element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_system.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">system element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_system.html">system element</a> provides the memory layout and the TrustZone configuration of the complete system. This information can be used for example, to create a linker script that defines the memory setup of the SoC system.</p> <table class="cmtable" summary="Element: system"> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td><a class="el" href="fm_processor.html">.processor</a> </td><td>A sequence of all processor elements available in the system resource file. </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_memory.html">.memory</a> </td><td>A sequence of all memory regions available in the system resource file. </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_peripheral.html">.peripheral</a> </td><td>A sequence of all peripherals available in the system resource file. </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_sau.html">.sau</a> </td><td>A sequence of all SAU regions for initialization. </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_interrupt.html">.interrupt</a> </td><td>A sequence of all interrupt sources available. </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_mpc_setup.html">.mpc_setup</a> </td><td>Contains the device specific configuration registers for the setup of the Memory Protection Controller (MPC). </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_reg_setup.html">.reg_setup</a> </td><td>Contains the device specific configuration registers for the setup of the peripherals. </td><td>sequence </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_system.html
HTML
apache-2.0
6,751
var fm_system = [ [ "processor[n] sequence element", "fm_processor.html", null ], [ "../memory[n] sequence element", "fm_memory.html", null ], [ "../peripheral[n] element", "fm_peripheral.html", null ], [ "sau[n] sequence element", "fm_sau.html", null ], [ "interrupt[n] sequence element", "fm_interrupt.html", null ], [ "mpc_setup[n] element", "fm_mpc_setup.html", null ], [ "reg_setup[n] element", "fm_reg_setup.html", null ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_system.js
JavaScript
apache-2.0
458
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>zone element</title> <title>CMSIS-Zone (Preview): zone element</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('fm_zone.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">zone element </div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p>The <a class="el" href="fm_zone.html">zone element</a> provides the setup information of a zone (or system partition) along with related peripherals. This information can be used for example, to create the MPU setup that is required for various execution zones along with the related linker setup.</p> <table class="cmtable" summary="Element: zone"> <tr> <th>Child Elements </th><th>Description </th><th>Type </th></tr> <tr> <td>.name </td><td>The name of the zone (or system partition). </td><td>string </td></tr> <tr> <td><a class="el" href="fm_memory.html">.memory</a> </td><td>A sequence of all memory regions that are accessible in the zone (or system partition). </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_peripheral.html">.peripheral</a> </td><td>A sequence of all peripherals that are accessible in the zone (or system partition). </td><td>sequence </td></tr> <tr> <td><a class="el" href="fm_mpu_setup.html">.mpu_setup</a> </td><td>A sequence of configuration information for the Memory Protection Unit (MPU). </td><td>sequence </td></tr> </table> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="navelem"><a class="el" href="GenDataModel.html">Generator Data Model</a></li> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_zone.html
HTML
apache-2.0
6,220
var fm_zone = [ [ "../memory[n] sequence element", "fm_memory.html", null ], [ "../peripheral[n] element", "fm_peripheral.html", null ], [ "mpu_setup element", "fm_mpu_setup.html", null ] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/fm_zone.js
JavaScript
apache-2.0
202
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Main Page</title> <title>CMSIS-Zone (Preview): Main Page</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li class="current"><a href="index.html"><span>Main&#160;Page</span></a></li> <li><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('index.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">CMSIS-Zone (Preview) Documentation</div> </div> </div><!--header--> <div class="contents"> <div class="textblock"><p><b>CMSIS-Zone</b> defines methods to describe system resources and to partition these resources into multiple projects and execution areas. The system resources may include multiple processors, memory areas, peripherals and related interrupts. The system resources and partition assignments are stored in <a class="el" href="zoneFormat.html">Zone Description Format</a> (XML based).</p> <p><b>CMSIS-Zone</b> includes a utility that manages these XML files. This utility:</p> <ul> <li>displays all available system resources including memory and peripherals</li> <li>allows to partition memory and assign resources to sub-systems.</li> <li>supports the setup of secure, non-secure, and MPU protected execution zones with assignment of memory, peripherals, and interrupts.</li> <li>provides a data model for generation of configuration files for tool and hardware setup.</li> </ul> <p>The following diagram explains the development work flow when using the <b>CMSIS-Zone</b> management tool.</p> <div class="image"> <img src="Partitioning_Workflow.png" alt="Partitioning_Workflow.png"/> <div class="caption"> CMSIS-Zone development workflow</div></div> <p> The CMSIS-Zone utility reads a <a class="el" href="zoneFormat.html#rzone">.rzone</a> file that defines the overall system resources of an SoC system. An interactive GUI supports the system partitioning. The assignments of the various partitions (also called zones) saved in the <a class="el" href="zoneFormat.html#azone">.azone</a> file.</p> <p>The combined information of resources and assignments can be exported to multiple <a class="el" href="zoneFormat.html#rzone">.rzone</a> files that represent a sub-system. By using file templates the CMSIS-Zone utility can create tool or hardware configuration files.</p> <p>It is possible to uses these steps multiple times which allows to split a complex SoC design with multiple processors into smaller sub-systems. For example a multi-core device can be partitioned in steps:</p> <ul> <li>Step 1: split the multi-processor system into single processor sub-systems.</li> <li>Step 2: create the partitions for secure and non-secure execution.</li> <li>Step 3: configure MPU protected execution zones.</li> </ul> <p>The following SoC diagram exemplifies step 1 and step 2 of this workflow.</p> <div class="image"> <img src="Partitioning_Hardware.png" alt="Partitioning_Hardware.png"/> <div class="caption"> Hardware partitioning in multiple steps</div></div> <p>The following sections explain:</p> <ul> <li><a class="el" href="zoneToolUsage.html">CMSIS-Zone Utility</a> shows hot to use the CMSIS-Zone stand-alone tool to generate the relevant project information to be used in integrated development environments (IDEs).</li> <li><a class="el" href="zoneFormat.html">Zone Description Format</a> (XML based) that stores system resource information and the configuration of project zones and execution zones.</li> <li><a class="el" href="GenDataModel.html">Generator Data Model</a> which is used to create tool set-up files and hardware configuration files. </li> </ul> </div></div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/index.html
HTML
apache-2.0
8,129
#nav-tree .children_ul { margin:0; padding:4px; } #nav-tree ul { list-style:none outside none; margin:0px; padding:0px; } #nav-tree li { white-space:nowrap; margin:0px; padding:0px; } #nav-tree .plus { margin:0px; } #nav-tree .selected { background-image: url('tab_a.png'); background-repeat:repeat-x; color: #fff; text-shadow: 0px 1px 1px rgba(0, 0, 0, 1.0); } #nav-tree img { margin:0px; padding:0px; border:0px; vertical-align: middle; } #nav-tree a { text-decoration:none; padding:0px; margin:0px; outline:none; } #nav-tree .label { margin:0px; padding:0px; font: 12px 'Lucida Grande',Geneva,Helvetica,Arial,sans-serif; } #nav-tree .label a { padding:2px; } #nav-tree .selected a { text-decoration:none; color:#fff; } #nav-tree .children_ul { margin:0px; padding:0px; } #nav-tree .item { margin:0px; padding:0px; } #nav-tree { padding: 0px 0px; background-color: #FAFAFF; font-size:14px; overflow:auto; } #doc-content { overflow:auto; display:block; padding:0px; margin:0px; -webkit-overflow-scrolling : touch; /* iOS 5+ */ } #side-nav { padding:0 6px 0 0; margin: 0px; display:block; position: absolute; left: 0px; width: 250px; } .ui-resizable .ui-resizable-handle { display:block; } .ui-resizable-e { background:url("ftv2splitbar.png") repeat scroll right center transparent; cursor:e-resize; height:100%; right:0; top:0; width:6px; } .ui-resizable-handle { display:none; font-size:0.1px; position:absolute; z-index:1; } #nav-tree-contents { margin: 6px 0px 0px 0px; } #nav-tree { background-image:url('nav_h.png'); background-repeat:repeat-x; background-color: #F9FAFC; -webkit-overflow-scrolling : touch; /* iOS 5+ */ } #nav-sync { position:absolute; top:5px; right:24px; z-index:0; } #nav-sync img { opacity:0.3; } #nav-sync img:hover { opacity:0.9; } @media print { #nav-tree { display: none; } div.ui-resizable-handle { display: none; position: relative; } }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/navtree.css
CSS
apache-2.0
2,036
var NAVTREE = [ [ "CMSIS-Zone (Preview)", "index.html", [ [ "Revision History of CMSIS-Zone", "zone_revisionHistory.html", null ], [ "CMSIS-Zone Use Cases", "UseCases.html", [ [ "MPU Protection", "UseCases.html#UseCase_MPU", null ], [ "TrustZone Partitioning", "UseCases.html#UseCase_TrustZone", null ], [ "Multi-Core Partitioning", "UseCases.html#UseCase_MultiCore", null ] ] ], [ "CMSIS-Zone Utility", "zoneToolUsage.html", "zoneToolUsage" ], [ "Zone Description Format", "zoneFormat.html", "zoneFormat" ], [ "Generator Data Model", "GenDataModel.html", "GenDataModel" ], [ "Todo List", "todo.html", null ] ] ] ]; var NAVTREEINDEX = [ "GenDataModel.html" ]; var SYNCONMSG = 'click to disable panel synchronisation'; var SYNCOFFMSG = 'click to enable panel synchronisation'; var SYNCONMSG = 'click to disable panel synchronisation'; var SYNCOFFMSG = 'click to enable panel synchronisation'; var navTreeSubIndices = new Array(); function getData(varName) { var i = varName.lastIndexOf('/'); var n = i>=0 ? varName.substring(i+1) : varName; return eval(n.replace(/\-/g,'_')); } function stripPath(uri) { return uri.substring(uri.lastIndexOf('/')+1); } function stripPath2(uri) { var i = uri.lastIndexOf('/'); var s = uri.substring(i+1); var m = uri.substring(0,i+1).match(/\/d\w\/d\w\w\/$/); return m ? uri.substring(i-6) : s; } function localStorageSupported() { try { return 'localStorage' in window && window['localStorage'] !== null && window.localStorage.getItem; } catch(e) { return false; } } function storeLink(link) { if (!$("#nav-sync").hasClass('sync') && localStorageSupported()) { window.localStorage.setItem('navpath',link); } } function deleteLink() { if (localStorageSupported()) { window.localStorage.setItem('navpath',''); } } function cachedLink() { if (localStorageSupported()) { return window.localStorage.getItem('navpath'); } else { return ''; } } function getScript(scriptName,func,show) { var head = document.getElementsByTagName("head")[0]; var script = document.createElement('script'); script.id = scriptName; script.type = 'text/javascript'; script.onload = func; script.src = scriptName+'.js'; if ($.browser.msie && $.browser.version<=8) { // script.onload does not work with older versions of IE script.onreadystatechange = function() { if (script.readyState=='complete' || script.readyState=='loaded') { func(); if (show) showRoot(); } } } head.appendChild(script); } function createIndent(o,domNode,node,level) { var level=-1; var n = node; while (n.parentNode) { level++; n=n.parentNode; } if (node.childrenData) { var imgNode = document.createElement("img"); imgNode.style.paddingLeft=(16*level).toString()+'px'; imgNode.width = 16; imgNode.height = 22; imgNode.border = 0; node.plus_img = imgNode; node.expandToggle = document.createElement("a"); node.expandToggle.href = "javascript:void(0)"; node.expandToggle.onclick = function() { if (node.expanded) { $(node.getChildrenUL()).slideUp("fast"); node.plus_img.src = node.relpath+"ftv2pnode.png"; node.expanded = false; } else { expandNode(o, node, false, false); } } node.expandToggle.appendChild(imgNode); domNode.appendChild(node.expandToggle); imgNode.src = node.relpath+"ftv2pnode.png"; } else { var span = document.createElement("span"); span.style.display = 'inline-block'; span.style.width = 16*(level+1)+'px'; span.style.height = '22px'; span.innerHTML = '&#160;'; domNode.appendChild(span); } } var animationInProgress = false; function gotoAnchor(anchor,aname,updateLocation) { var pos, docContent = $('#doc-content'); if (anchor.parent().attr('class')=='memItemLeft' || anchor.parent().attr('class')=='fieldtype' || anchor.parent().is(':header')) { pos = anchor.parent().position().top; } else if (anchor.position()) { pos = anchor.position().top; } if (pos) { var dist = Math.abs(Math.min( pos-docContent.offset().top, docContent[0].scrollHeight- docContent.height()-docContent.scrollTop())); animationInProgress=true; docContent.animate({ scrollTop: pos + docContent.scrollTop() - docContent.offset().top },Math.max(50,Math.min(500,dist)),function(){ if (updateLocation) window.location.href=aname; animationInProgress=false; }); } } function newNode(o, po, text, link, childrenData, lastNode) { var node = new Object(); node.children = Array(); node.childrenData = childrenData; node.depth = po.depth + 1; node.relpath = po.relpath; node.isLast = lastNode; node.li = document.createElement("li"); po.getChildrenUL().appendChild(node.li); node.parentNode = po; node.itemDiv = document.createElement("div"); node.itemDiv.className = "item"; node.labelSpan = document.createElement("span"); node.labelSpan.className = "label"; createIndent(o,node.itemDiv,node,0); node.itemDiv.appendChild(node.labelSpan); node.li.appendChild(node.itemDiv); var a = document.createElement("a"); node.labelSpan.appendChild(a); node.label = document.createTextNode(text); node.expanded = false; a.appendChild(node.label); if (link) { var url; if (link.substring(0,1)=='^') { url = link.substring(1); link = url; } else { url = node.relpath+link; } a.className = stripPath(link.replace('#',':')); if (link.indexOf('#')!=-1) { var aname = '#'+link.split('#')[1]; var srcPage = stripPath($(location).attr('pathname')); var targetPage = stripPath(link.split('#')[0]); a.href = srcPage!=targetPage ? url : "javascript:void(0)"; a.onclick = function(){ storeLink(link); if (!$(a).parent().parent().hasClass('selected')) { $('.item').removeClass('selected'); $('.item').removeAttr('id'); $(a).parent().parent().addClass('selected'); $(a).parent().parent().attr('id','selected'); } var anchor = $(aname); gotoAnchor(anchor,aname,true); }; } else { a.href = url; a.onclick = function() { storeLink(link); } } } else { if (childrenData != null) { a.className = "nolink"; a.href = "javascript:void(0)"; a.onclick = node.expandToggle.onclick; } } node.childrenUL = null; node.getChildrenUL = function() { if (!node.childrenUL) { node.childrenUL = document.createElement("ul"); node.childrenUL.className = "children_ul"; node.childrenUL.style.display = "none"; node.li.appendChild(node.childrenUL); } return node.childrenUL; }; return node; } function showRoot() { var headerHeight = $("#top").height(); var footerHeight = $("#nav-path").height(); var windowHeight = $(window).height() - headerHeight - footerHeight; (function (){ // retry until we can scroll to the selected item try { var navtree=$('#nav-tree'); navtree.scrollTo('#selected',0,{offset:-windowHeight/2}); } catch (err) { setTimeout(arguments.callee, 0); } })(); } function expandNode(o, node, imm, showRoot) { if (node.childrenData && !node.expanded) { if (typeof(node.childrenData)==='string') { var varName = node.childrenData; getScript(node.relpath+varName,function(){ node.childrenData = getData(varName); expandNode(o, node, imm, showRoot); }, showRoot); } else { if (!node.childrenVisited) { getNode(o, node); } if (imm || ($.browser.msie && $.browser.version>8)) { // somehow slideDown jumps to the start of tree for IE9 :-( $(node.getChildrenUL()).show(); } else { $(node.getChildrenUL()).slideDown("fast"); } if (node.isLast) { node.plus_img.src = node.relpath+"ftv2mlastnode.png"; } else { node.plus_img.src = node.relpath+"ftv2mnode.png"; } node.expanded = true; } } } function glowEffect(n,duration) { n.addClass('glow').delay(duration).queue(function(next){ $(this).removeClass('glow');next(); }); } function highlightAnchor() { var aname = $(location).attr('hash'); var anchor = $(aname); if (anchor.parent().attr('class')=='memItemLeft'){ var rows = $('.memberdecls tr[class$="'+ window.location.hash.substring(1)+'"]'); glowEffect(rows.children(),300); // member without details } else if (anchor.parents().slice(2).prop('tagName')=='TR') { glowEffect(anchor.parents('div.memitem'),1000); // enum value } else if (anchor.parent().attr('class')=='fieldtype'){ glowEffect(anchor.parent().parent(),1000); // struct field } else if (anchor.parent().is(":header")) { glowEffect(anchor.parent(),1000); // section header } else { glowEffect(anchor.next(),1000); // normal member } gotoAnchor(anchor,aname,false); } function selectAndHighlight(hash,n) { var a; if (hash) { var link=stripPath($(location).attr('pathname'))+':'+hash.substring(1); a=$('.item a[class$="'+link+'"]'); } if (a && a.length) { a.parent().parent().addClass('selected'); a.parent().parent().attr('id','selected'); highlightAnchor(); } else if (n) { $(n.itemDiv).addClass('selected'); $(n.itemDiv).attr('id','selected'); } if ($('#nav-tree-contents .item:first').hasClass('selected')) { $('#nav-sync').css('top','30px'); } else { $('#nav-sync').css('top','5px'); } showRoot(); } function showNode(o, node, index, hash) { if (node && node.childrenData) { if (typeof(node.childrenData)==='string') { var varName = node.childrenData; getScript(node.relpath+varName,function(){ node.childrenData = getData(varName); showNode(o,node,index,hash); },true); } else { if (!node.childrenVisited) { getNode(o, node); } $(node.getChildrenUL()).css({'display':'block'}); if (node.isLast) { node.plus_img.src = node.relpath+"ftv2mlastnode.png"; } else { node.plus_img.src = node.relpath+"ftv2mnode.png"; } node.expanded = true; var n = node.children[o.breadcrumbs[index]]; if (index+1<o.breadcrumbs.length) { showNode(o,n,index+1,hash); } else { if (typeof(n.childrenData)==='string') { var varName = n.childrenData; getScript(n.relpath+varName,function(){ n.childrenData = getData(varName); node.expanded=false; showNode(o,node,index,hash); // retry with child node expanded },true); } else { var rootBase = stripPath(o.toroot.replace(/\..+$/, '')); if (rootBase=="index" || rootBase=="pages" || rootBase=="search") { expandNode(o, n, true, true); } selectAndHighlight(hash,n); } } } } else { selectAndHighlight(hash); } } function removeToInsertLater(element) { var parentNode = element.parentNode; var nextSibling = element.nextSibling; parentNode.removeChild(element); return function() { if (nextSibling) { parentNode.insertBefore(element, nextSibling); } else { parentNode.appendChild(element); } }; } function getNode(o, po) { var insertFunction = removeToInsertLater(po.li); po.childrenVisited = true; var l = po.childrenData.length-1; for (var i in po.childrenData) { var nodeData = po.childrenData[i]; po.children[i] = newNode(o, po, nodeData[0], nodeData[1], nodeData[2], i==l); } insertFunction(); } function gotoNode(o,subIndex,root,hash,relpath) { var nti = navTreeSubIndices[subIndex][root+hash]; o.breadcrumbs = $.extend(true, [], nti ? nti : navTreeSubIndices[subIndex][root]); if (!o.breadcrumbs && root!=NAVTREE[0][1]) { // fallback: show index navTo(o,NAVTREE[0][1],"",relpath); $('.item').removeClass('selected'); $('.item').removeAttr('id'); } if (o.breadcrumbs) { o.breadcrumbs.unshift(0); // add 0 for root node showNode(o, o.node, 0, hash); } } function navTo(o,root,hash,relpath) { var link = cachedLink(); if (link) { var parts = link.split('#'); root = parts[0]; if (parts.length>1) hash = '#'+parts[1]; else hash=''; } if (hash.match(/^#l\d+$/)) { var anchor=$('a[name='+hash.substring(1)+']'); glowEffect(anchor.parent(),1000); // line number hash=''; // strip line number anchors //root=root.replace(/_source\./,'.'); // source link to doc link } var url=root+hash; var i=-1; while (NAVTREEINDEX[i+1]<=url) i++; if (i==-1) { i=0; root=NAVTREE[0][1]; } // fallback: show index if (navTreeSubIndices[i]) { gotoNode(o,i,root,hash,relpath) } else { getScript(relpath+'navtreeindex'+i,function(){ navTreeSubIndices[i] = eval('NAVTREEINDEX'+i); if (navTreeSubIndices[i]) { gotoNode(o,i,root,hash,relpath); } },true); } } function showSyncOff(n,relpath) { n.html('<img src="'+relpath+'sync_off.png" title="'+SYNCOFFMSG+'"/>'); } function showSyncOn(n,relpath) { n.html('<img src="'+relpath+'sync_on.png" title="'+SYNCONMSG+'"/>'); } function toggleSyncButton(relpath) { var navSync = $('#nav-sync'); if (navSync.hasClass('sync')) { navSync.removeClass('sync'); showSyncOff(navSync,relpath); storeLink(stripPath2($(location).attr('pathname'))+$(location).attr('hash')); } else { navSync.addClass('sync'); showSyncOn(navSync,relpath); deleteLink(); } } function initNavTree(toroot,relpath) { var o = new Object(); o.toroot = toroot; o.node = new Object(); o.node.li = document.getElementById("nav-tree-contents"); o.node.childrenData = NAVTREE; o.node.children = new Array(); o.node.childrenUL = document.createElement("ul"); o.node.getChildrenUL = function() { return o.node.childrenUL; }; o.node.li.appendChild(o.node.childrenUL); o.node.depth = 0; o.node.relpath = relpath; o.node.expanded = false; o.node.isLast = true; o.node.plus_img = document.createElement("img"); o.node.plus_img.src = relpath+"ftv2pnode.png"; o.node.plus_img.width = 16; o.node.plus_img.height = 22; if (localStorageSupported()) { var navSync = $('#nav-sync'); if (cachedLink()) { showSyncOff(navSync,relpath); navSync.removeClass('sync'); } else { showSyncOn(navSync,relpath); } navSync.click(function(){ toggleSyncButton(relpath); }); } $(window).load(function(){ navTo(o,toroot,window.location.hash,relpath); showRoot(); }); $(window).bind('hashchange', function(){ if (window.location.hash && window.location.hash.length>1){ var a; if ($(location).attr('hash')){ var clslink=stripPath($(location).attr('pathname'))+':'+ $(location).attr('hash').substring(1); a=$('.item a[class$="'+clslink+'"]'); } if (a==null || !$(a).parent().parent().hasClass('selected')){ $('.item').removeClass('selected'); $('.item').removeAttr('id'); } var link=stripPath2($(location).attr('pathname')); navTo(o,link,$(location).attr('hash'),relpath); } else if (!animationInProgress) { $('#doc-content').scrollTop(0); $('.item').removeClass('selected'); $('.item').removeAttr('id'); navTo(o,toroot,window.location.hash,relpath); } }) }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/navtree.js
JavaScript
apache-2.0
15,586
var NAVTREEINDEX0 = { "GenDataModel.html":[4], "GenDataModel.html#fm_basics":[4,1], "GenDataModel.html#fp_toplevel":[4,0], "UseCases.html":[1], "UseCases.html#UseCase_MPU":[1,0], "UseCases.html#UseCase_MultiCore":[1,2], "UseCases.html#UseCase_TrustZone":[1,1], "fm_interrupt.html":[4,2,4], "fm_memory.html":[4,2,1], "fm_memory.html":[4,3,0], "fm_mpc_setup.html":[4,2,5], "fm_mpu_setup.html":[4,3,2], "fm_peripheral.html":[4,2,2], "fm_peripheral.html":[4,3,1], "fm_processor.html":[4,2,0], "fm_reg_setup.html":[4,2,6], "fm_sau.html":[4,2,3], "fm_system.html":[4,2], "fm_zone.html":[4,3], "index.html":[], "pages.html":[], "todo.html":[5], "xml_arzone.html":[3,2,0], "xml_azone_pg.html":[3,2], "xml_configure.html":[3,2,1], "xml_configure.html#xml_ctype":[3,2,1,0], "xml_creator.html":[3,1,0], "xml_device.html":[3,1,1], "xml_device.html#xml_package":[3,1,1,0], "xml_device.html#xml_processor":[3,1,1,1], "xml_memories.html":[3,1,2,1], "xml_memories.html#xml_rmemory":[3,1,2,1,0], "xml_memories.html#xml_rmpc":[3,1,2,1,1], "xml_partition.html":[3,2,2], "xml_partition.html#xml_amemory":[3,2,2,0], "xml_partition.html#xml_aperipheral":[3,2,2,1], "xml_partition.html#xml_aslot":[3,2,2,2], "xml_peripherals.html":[3,1,2,2], "xml_peripherals.html#xml_group":[3,1,2,2,0], "xml_peripherals.html#xml_interrupt":[3,1,2,2,3], "xml_peripherals.html#xml_p_setup":[3,1,2,2,4], "xml_peripherals.html#xml_peripheral":[3,1,2,2,1], "xml_peripherals.html#xml_slot":[3,1,2,2,2], "xml_resources.html":[3,1,2], "xml_rzone_pg.html":[3,1], "xml_sau_init.html":[3,1,2,0], "xml_sau_init.html#xml_si_region":[3,1,2,0,0], "xml_zones.html":[3,2,3], "xml_zones.html#xml_ainterrupt":[3,2,3,2], "xml_zones.html#xml_assign":[3,2,3,1], "xml_zones.html#xml_zone":[3,2,3,0], "zTCLI.html":[2,3], "zTELPC55.html":[2,4,2], "zTELPC55.html#zTELPC55_Eclipse":[2,4,2,0], "zTELPC55.html#zTELPC55_MDK":[2,4,2,1], "zTELPC55.html#zTELPC55_MDK_Setup":[2,4,2,2], "zTELPC55.html#zTELPC55_TZSetup":[2,4,2,2,1], "zTELPC55.html#zTELPC55_hwsScatter":[2,4,2,2,0], "zTEMusca.html":[2,4,1], "zTESTM32L5.html":[2,4,3], "zTESTM32L5.html#zTESTM32L5_Eclipse":[2,4,3,0], "zTESTM32L5.html#zTESTM32L5_MDK":[2,4,3,1], "zTESTM32L5.html#zTESTM32L5_MDK_Setup":[2,4,3,2], "zTESTM32L5.html#zTESTM32L5_hwsScatter":[2,4,3,2,0], "zTExamples.html":[2,4], "zTExamples.html#zTExImport":[2,4,0], "zTInstall.html":[2,0], "zTInteractiveMode.html":[2,2], "zTUI.html":[2,1], "zTUI.html#zTGUI":[2,1,0], "zTUI.html#zTGUIButtons":[2,1,2,0], "zTUI.html#zTGUIZoneEditor":[2,1,2], "zTUI.html#zTProjEx":[2,1,1], "zTUICreateProject.html":[2,2,0], "zTUIGenerate.html":[2,2,3], "zTUIMemPerRes.html":[2,2,1], "zTUIMemPerRes.html#zTUIMemAdd":[2,2,1,1], "zTUIMemPerRes.html#zTUIMemDel":[2,2,1,2], "zTUIMemPerRes.html#zTUIMemView":[2,2,1,0], "zTUIMemPerRes.html#zTUIPerProp":[2,2,1,3], "zTUIMemPerRes.html#zTUIPerSlotConf":[2,2,1,4], "zTUIZonePart.html":[2,2,2], "zTUIZonePart.html#zTUICreate":[2,2,2,0], "zoneFormat.html":[3], "zoneFormat.html#XML_Format_Schema":[3,0], "zoneToolUsage.html":[2], "zone_revisionHistory.html":[0] };
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/navtreeindex0.js
JavaScript
apache-2.0
3,037
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta http-equiv="X-UA-Compatible" content="IE=9"/> <title>Usage and Description</title> <title>CMSIS-Zone (Preview): Usage and Description</title> <link href="tabs.css" rel="stylesheet" type="text/css"/> <link href="cmsis.css" rel="stylesheet" type="text/css" /> <script type="text/javascript" src="jquery.js"></script> <script type="text/javascript" src="dynsections.js"></script> <script type="text/javascript" src="printComponentTabs.js"></script> <link href="navtree.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="resize.js"></script> <script type="text/javascript" src="navtree.js"></script> <script type="text/javascript"> $(document).ready(initResizable); $(window).load(resizeHeight); </script> <link href="search/search.css" rel="stylesheet" type="text/css"/> <script type="text/javascript" src="search/search.js"></script> <script type="text/javascript"> $(document).ready(function() { searchBox.OnSelectItem(0); }); </script> </head> <body> <div id="top"><!-- do not remove this div, it is closed by doxygen! --> <div id="titlearea"> <table cellspacing="0" cellpadding="0"> <tbody> <tr style="height: 46px;"> <td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td> <td style="padding-left: 0.5em;"> <div id="projectname">CMSIS-Zone (Preview) &#160;<span id="projectnumber">Version 0.9.2</span> </div> <div id="projectbrief">System Resource Management</div> </td> </tr> </tbody> </table> </div> <!-- end header part --> <div id="CMSISnav" class="tabs1"> <ul class="tablist"> <script type="text/javascript"> <!-- writeComponentTabs.call(this); //--> </script> </ul> </div> <!-- Generated by Doxygen 1.8.6 --> <script type="text/javascript"> var searchBox = new SearchBox("searchBox", "search",false,'Search'); </script> <div id="navrow1" class="tabs"> <ul class="tablist"> <li><a href="index.html"><span>Main&#160;Page</span></a></li> <li class="current"><a href="pages.html"><span>Usage&#160;and&#160;Description</span></a></li> <li> <div id="MSearchBox" class="MSearchBoxInactive"> <span class="left"> <img id="MSearchSelect" src="search/mag_sel.png" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" alt=""/> <input type="text" id="MSearchField" value="Search" accesskey="S" onfocus="searchBox.OnSearchFieldFocus(true)" onblur="searchBox.OnSearchFieldFocus(false)" onkeyup="searchBox.OnSearchFieldChange(event)"/> </span><span class="right"> <a id="MSearchClose" href="javascript:searchBox.CloseResultsWindow()"><img id="MSearchCloseImg" border="0" src="search/close.png" alt=""/></a> </span> </div> </li> </ul> </div> </div><!-- top --> <div id="side-nav" class="ui-resizable side-nav-resizable"> <div id="nav-tree"> <div id="nav-tree-contents"> <div id="nav-sync" class="sync"></div> </div> </div> <div id="splitbar" style="-moz-user-select:none;" class="ui-resizable-handle"> </div> </div> <script type="text/javascript"> $(document).ready(function(){initNavTree('pages.html','');}); </script> <div id="doc-content"> <!-- window showing the filter options --> <div id="MSearchSelectWindow" onmouseover="return searchBox.OnSearchSelectShow()" onmouseout="return searchBox.OnSearchSelectHide()" onkeydown="return searchBox.OnSearchSelectKey(event)"> <a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(0)"><span class="SelectionMark">&#160;</span>All</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(1)"><span class="SelectionMark">&#160;</span>Files</a><a class="SelectItem" href="javascript:void(0)" onclick="searchBox.OnSelectItem(2)"><span class="SelectionMark">&#160;</span>Pages</a></div> <!-- iframe showing the search results (closed by default) --> <div id="MSearchResultsWindow"> <iframe src="javascript:void(0)" frameborder="0" name="MSearchResults" id="MSearchResults"> </iframe> </div> <div class="header"> <div class="headertitle"> <div class="title">Usage and Description</div> </div> </div><!--header--> <div class="contents"> <div class="textblock">Here is a list of all related documentation pages:</div><div class="directory"> <div class="levels">[detail level <span onclick="javascript:toggleLevel(1);">1</span><span onclick="javascript:toggleLevel(2);">2</span><span onclick="javascript:toggleLevel(3);">3</span><span onclick="javascript:toggleLevel(4);">4</span>]</div><table class="directory"> <tr id="row_0_" class="even"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zone_revisionHistory.html" target="_self">Revision History of CMSIS-Zone</a></td><td class="desc"></td></tr> <tr id="row_1_"><td class="entry"><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="UseCases.html" target="_self">CMSIS-Zone Use Cases</a></td><td class="desc"></td></tr> <tr id="row_2_" class="even"><td class="entry"><img id="arr_2_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('2_')"/><a class="el" href="zoneToolUsage.html" target="_self">CMSIS-Zone Utility</a></td><td class="desc"></td></tr> <tr id="row_2_0_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTInstall.html" target="_self">Installation</a></td><td class="desc"></td></tr> <tr id="row_2_1_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTUI.html" target="_self">User Interface</a></td><td class="desc"></td></tr> <tr id="row_2_2_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_2_2_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('2_2_')"/><a class="el" href="zTInteractiveMode.html" target="_self">Interactive Mode</a></td><td class="desc"></td></tr> <tr id="row_2_2_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTUICreateProject.html" target="_self">Create a CMSIS-Zone Project</a></td><td class="desc"></td></tr> <tr id="row_2_2_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTUIMemPerRes.html" target="_self">Memory and Peripheral Resources</a></td><td class="desc"></td></tr> <tr id="row_2_2_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTUIZonePart.html" target="_self">Zone Partitioning</a></td><td class="desc"></td></tr> <tr id="row_2_2_3_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="zTUIGenerate.html" target="_self">Generate output files</a></td><td class="desc"></td></tr> <tr id="row_2_3_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTCLI.html" target="_self">Command Line Mode</a></td><td class="desc"></td></tr> <tr id="row_2_4_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_2_4_" src="ftv2mlastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('2_4_')"/><a class="el" href="zTExamples.html" target="_self">Examples</a></td><td class="desc"></td></tr> <tr id="row_2_4_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTEMusca.html" target="_self">Arm Musca-A1</a></td><td class="desc"></td></tr> <tr id="row_2_4_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="zTELPC55.html" target="_self">NXP LPC55S69</a></td><td class="desc"></td></tr> <tr id="row_2_4_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="zTESTM32L5.html" target="_self">STMicroelectronics STM32L5</a></td><td class="desc"></td></tr> <tr id="row_3_"><td class="entry"><img id="arr_3_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('3_')"/><a class="el" href="zoneFormat.html" target="_self">Zone Description Format</a></td><td class="desc"></td></tr> <tr id="row_3_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_3_0_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('3_0_')"/><a class="el" href="xml_rzone_pg.html" target="_self">/rzone element</a></td><td class="desc"></td></tr> <tr id="row_3_0_0_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_creator.html" target="_self">/rzone/creator element</a></td><td class="desc"></td></tr> <tr id="row_3_0_1_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_device.html" target="_self">/rzone/device element</a></td><td class="desc"></td></tr> <tr id="row_3_0_2_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_3_0_2_" src="ftv2mlastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('3_0_2_')"/><a class="el" href="xml_resources.html" target="_self">/rzone/resources element</a></td><td class="desc"></td></tr> <tr id="row_3_0_2_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_sau_init.html" target="_self">/rzone/resources/sau_init element</a></td><td class="desc"></td></tr> <tr id="row_3_0_2_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_memories.html" target="_self">/rzone/resources/memories element</a></td><td class="desc"></td></tr> <tr id="row_3_0_2_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="xml_peripherals.html" target="_self">/rzone/resources/peripherals element</a></td><td class="desc"></td></tr> <tr id="row_3_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_3_1_" src="ftv2mlastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('3_1_')"/><a class="el" href="xml_azone_pg.html" target="_self">/azone element</a></td><td class="desc"></td></tr> <tr id="row_3_1_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_arzone.html" target="_self">/azone/rzone element</a></td><td class="desc"></td></tr> <tr id="row_3_1_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_configure.html" target="_self">/azone/configure element</a></td><td class="desc"></td></tr> <tr id="row_3_1_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="xml_partition.html" target="_self">/azone/partition element</a></td><td class="desc"></td></tr> <tr id="row_3_1_3_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="xml_zones.html" target="_self">/azone/zones element</a></td><td class="desc"></td></tr> <tr id="row_4_" class="even"><td class="entry"><img id="arr_4_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('4_')"/><a class="el" href="GenDataModel.html" target="_self">Generator Data Model</a></td><td class="desc"></td></tr> <tr id="row_4_0_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_4_0_" src="ftv2mnode.png" alt="o" width="16" height="22" onclick="toggleFolder('4_0_')"/><a class="el" href="fm_system.html" target="_self">system element</a></td><td class="desc"></td></tr> <tr id="row_4_0_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_processor.html" target="_self">processor[n] sequence element</a></td><td class="desc"></td></tr> <tr id="row_4_0_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_memory.html" target="_self">../memory[n] sequence element</a></td><td class="desc"></td></tr> <tr id="row_4_0_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_peripheral.html" target="_self">../peripheral[n] element</a></td><td class="desc"></td></tr> <tr id="row_4_0_3_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_sau.html" target="_self">sau[n] sequence element</a></td><td class="desc"></td></tr> <tr id="row_4_0_4_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_interrupt.html" target="_self">interrupt[n] sequence element</a></td><td class="desc"></td></tr> <tr id="row_4_0_5_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_mpc_setup.html" target="_self">mpc_setup[n] element</a></td><td class="desc"></td></tr> <tr id="row_4_0_6_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="fm_reg_setup.html" target="_self">reg_setup[n] element</a></td><td class="desc"></td></tr> <tr id="row_4_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img id="arr_4_1_" src="ftv2mlastnode.png" alt="\" width="16" height="22" onclick="toggleFolder('4_1_')"/><a class="el" href="fm_zone.html" target="_self">zone element</a></td><td class="desc"></td></tr> <tr id="row_4_1_0_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_memory.html" target="_self">../memory[n] sequence element</a></td><td class="desc"></td></tr> <tr id="row_4_1_1_"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2node.png" alt="o" width="16" height="22" /><a class="el" href="fm_peripheral.html" target="_self">../peripheral[n] element</a></td><td class="desc"></td></tr> <tr id="row_4_1_2_" class="even"><td class="entry"><img src="ftv2vertline.png" alt="|" width="16" height="22" /><img src="ftv2blank.png" alt="&#160;" width="16" height="22" /><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="fm_mpu_setup.html" target="_self">mpu_setup element</a></td><td class="desc"></td></tr> <tr id="row_5_"><td class="entry"><img src="ftv2lastnode.png" alt="\" width="16" height="22" /><a class="el" href="todo.html" target="_self">Todo List</a></td><td class="desc"></td></tr> </table> </div><!-- directory --> </div><!-- contents --> </div><!-- doc-content --> <!-- start footer part --> <div id="nav-path" class="navpath"><!-- id is needed for treeview function! --> <ul> <li class="footer">Generated on Wed Jul 10 2019 15:21:06 for CMSIS-Zone (Preview) Version 0.9.2 by Arm Ltd. All rights reserved. <!-- <a href="http://www.doxygen.org/index.html"> <img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6 --> </li> </ul> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/pages.html
HTML
apache-2.0
18,878
var strgURL = location.pathname; // path of current component // constuctor for the array of objects function tabElement(id, folderName, tabTxt ) { this.id = id; // elementID as needed in html; this.folderName = folderName; // folder name of the component this.tabTxt = tabTxt; // Text displayed as menu on the web this.currentListItem = '<li id="' + this.id + '" class="current"> <a href="../..' + this.folderName + 'index.html"><span>' + this.tabTxt + '</span></a></li>'; this.listItem = '<li id="' + this.id + '"> <a href="../..' + this.folderName + 'index.html"><span>' + this.tabTxt + '</span></a></li>'; }; // array of objects var arr = []; // fill array arr.push( new tabElement( "GEN", "/General/html/", "General") ); arr.push( new tabElement( "CORE_A", "/Core_A/html/", "CMSIS-Core(A)") ); arr.push( new tabElement( "CORE_M", "/Core/html/", "CMSIS-Core(M)") ); arr.push( new tabElement( "DRV", "/Driver/html/", "Driver") ); arr.push( new tabElement( "DSP", "/DSP/html/", "DSP") ); arr.push( new tabElement( "NN", "/NN/html/", "NN") ); arr.push( new tabElement( "RTOSv1", "/RTOS/html/", "RTOS v1") ); arr.push( new tabElement( "RTOSv2", "/RTOS2/html/", "RTOS v2") ); arr.push( new tabElement( "PACK", "/Pack/html/", "Pack") ); arr.push( new tabElement( "SVD", "/SVD/html/", "SVD") ); arr.push( new tabElement( "DAP", "/DAP/html/", "DAP") ); arr.push( new tabElement( "ZONE", "/Zone/html/", "Zone") ); // write tabs // called from the header file. function writeComponentTabs() { for ( var i=0; i < arr.length; i++ ) { if (strgURL.search(arr[i].folderName) > 0) { // if this is the current folder document.write(arr[i].currentListItem); // then print and hightlight the tab } else { document.write(arr[i].listItem); // else, print the tab } } };
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/printComponentTabs.js
JavaScript
apache-2.0
2,273
var cookie_namespace = 'doxygen'; var sidenav,navtree,content,header; function readCookie(cookie) { var myCookie = cookie_namespace+"_"+cookie+"="; if (document.cookie) { var index = document.cookie.indexOf(myCookie); if (index != -1) { var valStart = index + myCookie.length; var valEnd = document.cookie.indexOf(";", valStart); if (valEnd == -1) { valEnd = document.cookie.length; } var val = document.cookie.substring(valStart, valEnd); return val; } } return 0; } function writeCookie(cookie, val, expiration) { if (val==undefined) return; if (expiration == null) { var date = new Date(); date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week expiration = date.toGMTString(); } document.cookie = cookie_namespace + "_" + cookie + "=" + val + "; expires=" + expiration+"; path=/"; } function resizeWidth() { var windowWidth = $(window).width() + "px"; var sidenavWidth = $(sidenav).outerWidth(); content.css({marginLeft:parseInt(sidenavWidth)+"px"}); writeCookie('width',sidenavWidth, null); } function restoreWidth(navWidth) { var windowWidth = $(window).width() + "px"; content.css({marginLeft:parseInt(navWidth)+6+"px"}); sidenav.css({width:navWidth + "px"}); } function resizeHeight() { var headerHeight = header.outerHeight(); var footerHeight = footer.outerHeight(); var windowHeight = $(window).height() - headerHeight - footerHeight; content.css({height:windowHeight + "px"}); navtree.css({height:windowHeight + "px"}); sidenav.css({height:windowHeight + "px",top: headerHeight+"px"}); } function initResizable() { header = $("#top"); sidenav = $("#side-nav"); content = $("#doc-content"); navtree = $("#nav-tree"); footer = $("#nav-path"); $(".side-nav-resizable").resizable({resize: function(e, ui) { resizeWidth(); } }); $(window).resize(function() { resizeHeight(); }); var width = readCookie('width'); if (width) { restoreWidth(width); } else { resizeWidth(); } resizeHeight(); var url = location.href; var i=url.indexOf("#"); if (i>=0) window.location.hash=url.substr(i); var _preventDefault = function(evt) { evt.preventDefault(); }; $("#splitbar").bind("dragstart", _preventDefault).bind("selectstart", _preventDefault); $(document).bind('touchmove',function(e){ var device = navigator.userAgent.toLowerCase(); var ios = device.match(/(iphone|ipod|ipad)/); if (ios) { try { var target = e.target; while (target) { if ($(target).css('-webkit-overflow-scrolling')=='touch') return; target = target.parentNode; } e.preventDefault(); } catch(err) { e.preventDefault(); } } }); }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/resize.js
JavaScript
apache-2.0
2,800
/*---------------- Search Box */ #FSearchBox { float: left; } #searchli { float: right; display: block; width: 170px; height: 24px; } #MSearchBox { white-space : nowrap; position: absolute; float: none; display: inline; margin-top: 3px; right: 0px; width: 170px; z-index: 102; } #MSearchBox .left { display:block; position:absolute; left:10px; width:20px; height:19px; background:url('search_l.png') no-repeat; background-position:right; } #MSearchSelect { display:block; position:absolute; width:20px; height:19px; } .left #MSearchSelect { left:4px; } .right #MSearchSelect { right:5px; } #MSearchField { display:block; position:absolute; height:19px; background:url('search_m.png') repeat-x; border:none; width:116px; margin-left:20px; padding-left:4px; color: #909090; outline: none; font: 9pt Arial, Verdana, sans-serif; } #FSearchBox #MSearchField { margin-left:15px; } #MSearchBox .right { display:block; position:absolute; right:10px; top:0px; width:20px; height:19px; background:url('search_r.png') no-repeat; background-position:left; } #MSearchClose { display: none; position: absolute; top: 4px; background : none; border: none; margin: 0px 4px 0px 0px; padding: 0px 0px; outline: none; } .left #MSearchClose { left: 6px; } .right #MSearchClose { right: 2px; } .MSearchBoxActive #MSearchField { color: #000000; } /*---------------- Search filter selection */ #MSearchSelectWindow { display: none; position: absolute; left: 0; top: 0; border: 1px solid #90A5CE; background-color: #F9FAFC; z-index: 1; padding-top: 4px; padding-bottom: 4px; -moz-border-radius: 4px; -webkit-border-top-left-radius: 4px; -webkit-border-top-right-radius: 4px; -webkit-border-bottom-left-radius: 4px; -webkit-border-bottom-right-radius: 4px; -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.15); } .SelectItem { font: 8pt Arial, Verdana, sans-serif; padding-left: 2px; padding-right: 12px; border: 0px; } span.SelectionMark { margin-right: 4px; font-family: monospace; outline-style: none; text-decoration: none; } a.SelectItem { display: block; outline-style: none; color: #000000; text-decoration: none; padding-left: 6px; padding-right: 12px; } a.SelectItem:focus, a.SelectItem:active { color: #000000; outline-style: none; text-decoration: none; } a.SelectItem:hover { color: #FFFFFF; background-color: #3D578C; outline-style: none; text-decoration: none; cursor: pointer; display: block; } /*---------------- Search results window */ iframe#MSearchResults { width: 60ex; height: 15em; } #MSearchResultsWindow { display: none; position: absolute; left: 0; top: 0; border: 1px solid #000; background-color: #EEF1F7; } /* ----------------------------------- */ #SRIndex { clear:both; padding-bottom: 15px; } .SREntry { font-size: 10pt; padding-left: 1ex; } .SRPage .SREntry { font-size: 8pt; padding: 1px 5px; } body.SRPage { margin: 5px 2px; } .SRChildren { padding-left: 3ex; padding-bottom: .5em } .SRPage .SRChildren { display: none; } .SRSymbol { font-weight: bold; color: #425E97; font-family: Arial, Verdana, sans-serif; text-decoration: none; outline: none; } a.SRScope { display: block; color: #425E97; font-family: Arial, Verdana, sans-serif; text-decoration: none; outline: none; } a.SRSymbol:focus, a.SRSymbol:active, a.SRScope:focus, a.SRScope:active { text-decoration: underline; } .SRPage .SRStatus { padding: 2px 5px; font-size: 8pt; font-style: italic; } .SRResult { display: none; } DIV.searchresults { margin-left: 10px; margin-right: 10px; }
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search.css
CSS
apache-2.0
4,007
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_0.html
HTML
apache-2.0
1,011
var searchData= [ ['arm_20musca_2da1',['Arm Musca-A1',['../zTEMusca.html',1,'zTExamples']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_0.js
JavaScript
apache-2.0
97
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_1.html
HTML
apache-2.0
1,011
var searchData= [ ['cmsis_2dzone_20use_20cases',['CMSIS-Zone Use Cases',['../UseCases.html',1,'']]], ['cmsis_2dzone_20utility',['CMSIS-Zone Utility',['../zoneToolUsage.html',1,'']]], ['command_20line_20mode',['Command Line Mode',['../zTCLI.html',1,'zoneToolUsage']]], ['create_20a_20cmsis_2dzone_20project',['Create a CMSIS-Zone Project',['../zTUICreateProject.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_1.js
JavaScript
apache-2.0
403
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_2.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_2.html
HTML
apache-2.0
1,011
var searchData= [ ['examples',['Examples',['../zTExamples.html',1,'zoneToolUsage']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_2.js
JavaScript
apache-2.0
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_3.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_3.html
HTML
apache-2.0
1,011
var searchData= [ ['generator_20data_20model',['Generator Data Model',['../GenDataModel.html',1,'']]], ['gendatamodel_2etxt',['GenDataModel.txt',['../GenDataModel_8txt.html',1,'']]], ['generate_20output_20files',['Generate output files',['../zTUIGenerate.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_3.js
JavaScript
apache-2.0
295
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_4.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_4.html
HTML
apache-2.0
1,011
var searchData= [ ['interrupt_5bn_5d_20sequence_20element',['interrupt[n] sequence element',['../fm_interrupt.html',1,'fm_system']]], ['installation',['Installation',['../zTInstall.html',1,'zoneToolUsage']]], ['interactive_20mode',['Interactive Mode',['../zTInteractiveMode.html',1,'zoneToolUsage']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_4.js
JavaScript
apache-2.0
310
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_5.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_5.html
HTML
apache-2.0
1,011
var searchData= [ ['mpc_5fsetup_5bn_5d_20element',['mpc_setup[n] element',['../fm_mpc_setup.html',1,'fm_system']]], ['mpu_5fsetup_20element',['mpu_setup element',['../fm_mpu_setup.html',1,'fm_zone']]], ['memory_20and_20peripheral_20resources',['Memory and Peripheral Resources',['../zTUIMemPerRes.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_5.js
JavaScript
apache-2.0
337
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_6.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_6.html
HTML
apache-2.0
1,011
var searchData= [ ['nxp_20lpc55s69',['NXP LPC55S69',['../zTELPC55.html',1,'zTExamples']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_6.js
JavaScript
apache-2.0
95
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_7.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_7.html
HTML
apache-2.0
1,011
var searchData= [ ['overview_2etxt',['Overview.txt',['../Overview_8txt.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_7.js
JavaScript
apache-2.0
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_8.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_8.html
HTML
apache-2.0
1,011
var searchData= [ ['processor_5bn_5d_20sequence_20element',['processor[n] sequence element',['../fm_processor.html',1,'fm_system']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_8.js
JavaScript
apache-2.0
138
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_9.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_9.html
HTML
apache-2.0
1,011
var searchData= [ ['reg_5fsetup_5bn_5d_20element',['reg_setup[n] element',['../fm_reg_setup.html',1,'fm_system']]], ['revision_20history_20of_20cmsis_2dzone',['Revision History of CMSIS-Zone',['../zone_revisionHistory.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_9.js
JavaScript
apache-2.0
239
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_a.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_a.html
HTML
apache-2.0
1,011
var searchData= [ ['sau_5bn_5d_20sequence_20element',['sau[n] sequence element',['../fm_sau.html',1,'fm_system']]], ['system_20element',['system element',['../fm_system.html',1,'GenDataModel']]], ['stmicroelectronics_20stm32l5',['STMicroelectronics STM32L5',['../zTESTM32L5.html',1,'zTExamples']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_a.js
JavaScript
apache-2.0
307
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_b.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_b.html
HTML
apache-2.0
1,011
var searchData= [ ['todo_20list',['Todo List',['../todo.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_b.js
JavaScript
apache-2.0
75
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_c.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_c.html
HTML
apache-2.0
1,011
var searchData= [ ['user_20interface',['User Interface',['../zTUI.html',1,'zoneToolUsage']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_c.js
JavaScript
apache-2.0
98
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_d.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_d.html
HTML
apache-2.0
1,011
var searchData= [ ['xml_5fformat_2etxt',['XML_Format.txt',['../XML__Format_8txt.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_d.js
JavaScript
apache-2.0
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="all_e.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_e.html
HTML
apache-2.0
1,011
var searchData= [ ['zone_20element',['zone element',['../fm_zone.html',1,'GenDataModel']]], ['zone_20description_20format',['Zone Description Format',['../zoneFormat.html',1,'']]], ['zone_20partitioning',['Zone Partitioning',['../zTUIZonePart.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/all_e.js
JavaScript
apache-2.0
283
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="files_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_0.html
HTML
apache-2.0
1,013
var searchData= [ ['gendatamodel_2etxt',['GenDataModel.txt',['../GenDataModel_8txt.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_0.js
JavaScript
apache-2.0
102
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="files_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_1.html
HTML
apache-2.0
1,013
var searchData= [ ['overview_2etxt',['Overview.txt',['../Overview_8txt.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_1.js
JavaScript
apache-2.0
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="files_2.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_2.html
HTML
apache-2.0
1,013
var searchData= [ ['xml_5fformat_2etxt',['XML_Format.txt',['../XML__Format_8txt.html',1,'']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/files_2.js
JavaScript
apache-2.0
99
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="NoMatches">No Matches</div> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/nomatches.html
HTML
apache-2.0
461
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_0.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_0.html
HTML
apache-2.0
1,013
var searchData= [ ['arm_20musca_2da1',['Arm Musca-A1',['../zTEMusca.html',1,'zTExamples']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_0.js
JavaScript
apache-2.0
97
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_1.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_1.html
HTML
apache-2.0
1,013
var searchData= [ ['cmsis_2dzone_20use_20cases',['CMSIS-Zone Use Cases',['../UseCases.html',1,'']]], ['cmsis_2dzone_20utility',['CMSIS-Zone Utility',['../zoneToolUsage.html',1,'']]], ['command_20line_20mode',['Command Line Mode',['../zTCLI.html',1,'zoneToolUsage']]], ['create_20a_20cmsis_2dzone_20project',['Create a CMSIS-Zone Project',['../zTUICreateProject.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_1.js
JavaScript
apache-2.0
403
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_2.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_2.html
HTML
apache-2.0
1,013
var searchData= [ ['examples',['Examples',['../zTExamples.html',1,'zoneToolUsage']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_2.js
JavaScript
apache-2.0
90
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_3.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_3.html
HTML
apache-2.0
1,013
var searchData= [ ['generator_20data_20model',['Generator Data Model',['../GenDataModel.html',1,'']]], ['generate_20output_20files',['Generate output files',['../zTUIGenerate.html',1,'zTInteractiveMode']]] ];
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_3.js
JavaScript
apache-2.0
213
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html><head><title></title> <meta http-equiv="Content-Type" content="text/xhtml;charset=UTF-8"/> <meta name="generator" content="Doxygen 1.8.6"> <link rel="stylesheet" type="text/css" href="search.css"/> <script type="text/javascript" src="pages_4.js"></script> <script type="text/javascript" src="search.js"></script> </head> <body class="SRPage"> <div id="SRIndex"> <div class="SRStatus" id="Loading">Loading...</div> <div id="SRResults"></div> <script type="text/javascript"><!-- createResults(); --></script> <div class="SRStatus" id="Searching">Searching...</div> <div class="SRStatus" id="NoMatches">No Matches</div> <script type="text/javascript"><!-- document.getElementById("Loading").style.display="none"; document.getElementById("NoMatches").style.display="none"; var searchResults = new SearchResults("searchResults"); searchResults.Search(); --></script> </div> </body> </html>
YifuLiu/AliOS-Things
components/cmsis/docs/Zone/html/search/pages_4.html
HTML
apache-2.0
1,013