Skip to content

Commit 1c80361

Browse files
Doc: Updated documentation for release 10.2.0
1 parent 39cd415 commit 1c80361

30 files changed

Lines changed: 438 additions & 150 deletions

docs/General/html/cm_revisionHistory.html

Lines changed: 26 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -113,6 +113,30 @@
113113
<div class="contents">
114114
<div class="textblock"><table class="cmtable" summary="Revision History">
115115
<tr>
116+
<td>10.2.0 </td><td><p class="starttd"></p>
117+
<p><b>FreeRTOS V10.2.0</b></p>
118+
<p></p>
119+
<p class="endtd">Maintenance release for CMSIS 5.4.0: </p>
120+
<ul>
121+
<li>
122+
RTOS2 API 2.1.3 </li>
123+
<li>
124+
Updated Arm standard C library interface </li>
125+
<li>
126+
Added configuration for the Event Recorder (<a class="el" href="cre_freertos_proj.html#cmsis_freertos_evr_config">Configure Event Recorder</a>) </li>
127+
<li>
128+
Added TrustZone example for Armv8M using RTOS2 API </li>
129+
<li>
130+
Enhanced FreeRTOS component viewer </li>
131+
<li>
132+
Corrected osDelayUntil execution duration </li>
133+
<li>
134+
Corrected SysTick_Handler execution when kernel is not started </li>
135+
<li>
136+
Corrected critical section for osKernelGetSysTimerCount </li>
137+
</ul>
138+
</td></tr>
139+
<tr>
116140
<td>10.0.1 </td><td><p class="starttd"></p>
117141
<p><b>FreeRTOS V10.0.0</b></p>
118142
<p></p>
@@ -157,7 +181,7 @@
157181
<!-- start footer part -->
158182
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
159183
<ul>
160-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
184+
<li class="footer">Generated on Fri Apr 12 2019 08:49:20 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
161185
<!--
162186
<a href="http://www.doxygen.org/index.html">
163187
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/cre_freertos_proj.html

Lines changed: 86 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -144,9 +144,13 @@ <h2><a class="anchor" id="native_freertos_config"></a>
144144
<h2><a class="anchor" id="native_freertos_er"></a>
145145
Add Event Recorder Visibility</h2>
146146
<ul>
147-
<li>To use the Event Recorder together with FreeRTOS, add the software components <b>::Compiler:Event Recorder</b> and <b>::RTOS:Event Groups</b> to your project.</li>
148-
<li>Add this include: <code>#include</code> <code>"EventRecorder.h"</code> </li>
149-
<li>Call <b>EventRecorderInitialize(EventRecordAll, 1);</b> in your application code (ideally in <code>main()</code>).</li>
147+
<li>To use the Event Recorder together with FreeRTOS, add the software component <b>::Compiler:Event Recorder</b> to your project.</li>
148+
<li>Open <a class="el" href="cre_freertos_proj.html#native_freertos_config">FreeRTOSConfig.h</a> and<ul>
149+
<li>verify the header file <b>freertos_evr.h</b> is included</li>
150+
<li>add Event Recorder configuration definitions (see <a class="el" href="cre_freertos_proj.html#cmsis_freertos_evr_config">Configure Event Recorder</a>)</li>
151+
</ul>
152+
</li>
153+
<li>Call <b><a class="el" href="group__freertos__setup.html#ga943f40b05c79f40c73d67b1adcbe3dbe" title="Setup Event Recorder configuration. ">EvrFreeRTOSSetup()</a></b> in your application code (ideally in <code>main()</code>).</li>
150154
<li>If you are using simulation mode, add an initialization file with the following content: <div class="fragment"><div class="line">MAP 0xE0001000, 0xE0001007 READ WRITE </div>
151155
<div class="line">signal <span class="keywordtype">void</span> DWT_CYCCNT (<span class="keywordtype">void</span>) {</div>
152156
<div class="line"><span class="keywordflow">while</span> (1) {</div>
@@ -158,7 +162,7 @@ <h2><a class="anchor" id="native_freertos_er"></a>
158162
</div><!-- fragment --></li>
159163
<li>Build the application code and download it to the debug hardware or run it in simulation.</li>
160164
</ul>
161-
<p>Once the target application generates event information, it can be viewed in the µVision debugger using the <b>Event</b> <b>Recorder</b>.</p>
165+
<p>Once the target application generates event information, it can be viewed in the µVision debugger using the <b>Event Recorder</b>.</p>
162166
<h1><a class="anchor" id="cmsis_freertos"></a>
163167
Create a CMSIS-FreeRTOS project</h1>
164168
<p>The steps to create a microcontroller application using CMSIS-FreeRTOS are:</p>
@@ -201,6 +205,8 @@ <h2><a class="anchor" id="cmsis_freertos_config"></a>
201205
<tr>
202206
<td>Timer queue length </td><td>configTIMER_QUEUE_LENGTH </td><td>Timer command queue length. </td></tr>
203207
<tr>
208+
<td>Preemption interrupt priority </td><td>configMAX_SYSCALL_INTERRUPT_PRIORITY </td><td>Maximum priority of interrupts that are safe to call FreeRTOS API. </td></tr>
209+
<tr>
204210
<td>Use time slicing </td><td>configUSE_TIME_SLICING </td><td>Enable setting to use time slicing. </td></tr>
205211
<tr>
206212
<td>Idle should yield </td><td>configIDLE_SHOULD_YIELD </td><td>Control Yield behavior of the idle task. </td></tr>
@@ -214,13 +220,41 @@ <h2><a class="anchor" id="cmsis_freertos_config"></a>
214220
<td>Use daemon task startup hook </td><td>configUSE_DAEMON_TASK_STARTUP_HOOK </td><td>Enable callback function call when timer service starts. </td></tr>
215221
<tr>
216222
<td>Use malloc failed hook </td><td>configUSE_MALLOC_FAILED_HOOK </td><td>Enable callback function call when out of dynamic memory. </td></tr>
223+
<tr>
224+
<td>Queue registry size </td><td>configQUEUE_REGISTRY_SIZE </td><td>Define maximum number of queue objects registered for debug purposes. </td></tr>
225+
</table>
226+
<p><b> Event Recorder Configuration </b></p>
227+
<p>The following settings are available (see <a class="el" href="cre_freertos_proj.html#cmsis_freertos_evr_config">Configure Event Recorder</a> for details):</p>
228+
<table class="doxtable">
229+
<tr>
230+
<th>Name </th><th>#define </th><th>Description </th></tr>
231+
<tr>
232+
<td>Initialize Event Recorder </td><td>configEVR_INITIALIZE </td><td>Initialize Event Recorder before FreeRTOS kernel start. </td></tr>
233+
<tr>
234+
<td>Setup recording level filter </td><td>configEVR_SETUP_LEVEL </td><td>Enable configuration of FreeRTOS events recording level. </td></tr>
235+
<tr>
236+
<td>Task functions </td><td>configEVR_LEVEL_TASKS </td><td>Define event recording level bitmask for events generated from Tasks functions. </td></tr>
237+
<tr>
238+
<td>Queue functions </td><td>configEVR_LEVEL_QUEUE </td><td>Define event recording level bitmask for events generated from Queue functions. </td></tr>
239+
<tr>
240+
<td>Timer functions </td><td>configEVR_LEVEL_TIMERS </td><td>Define event recording level bitmask for events generated from Timer functions. </td></tr>
241+
<tr>
242+
<td>Event Groups functions </td><td>configEVR_LEVEL_EVENTGROUPS </td><td>Define event recording level bitmask for events generated from Event Groups functions. </td></tr>
243+
<tr>
244+
<td>Heap functions </td><td>configEVR_LEVEL_HEAP </td><td>Define event recording level bitmask for events generated from Heap functions. </td></tr>
245+
<tr>
246+
<td>Stream Buffer functions </td><td>configEVR_LEVEL_STREAMBUFFER </td><td>Define event recording level bitmask for events generated from Stream Buffer functions. </td></tr>
217247
</table>
218248
<h2><a class="anchor" id="cmsis_freertos_er"></a>
219249
Add Event Recorder Visibility</h2>
220250
<ul>
221251
<li>To use the Event Recorder together with FreeRTOS, add the software component <b>::Compiler:Event Recorder</b> to your project.</li>
222-
<li>Add this include: <code>#include</code> <code>"EventRecorder.h"</code> </li>
223-
<li>Call <b>EventRecorderInitialize(EventRecordAll, 1);</b> in your application code (ideally in <code>main()</code>).</li>
252+
<li>Open <a class="el" href="cre_freertos_proj.html#native_freertos_config">FreeRTOSConfig.h</a> and<ul>
253+
<li>verify the header file <b>freertos_evr.h</b> is included</li>
254+
<li>modify Event Recorder configuration definitions (see <a class="el" href="cre_freertos_proj.html#cmsis_freertos_evr_config">Configure Event Recorder</a>) to change default configuration</li>
255+
</ul>
256+
</li>
257+
<li>Call <b>osKernelInitialize()</b> in your application code (ideally in <code>main()</code>) to setup Event Recorder according to configuration settings.</li>
224258
<li>If you are using simulation mode, add an initialization file with the following content: <div class="fragment"><div class="line">MAP 0xE0001000, 0xE0001007 READ WRITE </div>
225259
<div class="line">signal <span class="keywordtype">void</span> DWT_CYCCNT (<span class="keywordtype">void</span>) {</div>
226260
<div class="line"><span class="keywordflow">while</span> (1) {</div>
@@ -232,13 +266,56 @@ <h2><a class="anchor" id="cmsis_freertos_er"></a>
232266
</div><!-- fragment --></li>
233267
<li>Build the application code and download it to the debug hardware or run it in simulation.</li>
234268
</ul>
235-
<p>Once the target application generates event information, it can be viewed in the µVision debugger using the <b>Event</b> <b>Recorder</b>. </p>
269+
<p>Once the target application generates event information, it can be viewed in the µVision debugger using the <b>Event Recorder.</b></p>
270+
<h1><a class="anchor" id="cmsis_freertos_evr_config"></a>
271+
Configure Event Recorder</h1>
272+
<p>This section describes the configuration settings for the <a href="http://www.keil.com/pack/doc/compiler/EventRecorder/html/index.html" target="_blank">Event Recorder</a> annotations. For more information refer to section <a class="el" href="cre_freertos_proj.html#native_freertos_er">Add Event Recorder Visibility to native FreeRTOS project</a> or <a class="el" href="cre_freertos_proj.html#cmsis_freertos_er">Add Event Recorder Visibility to CMSIS-FreeRTOS project</a>.</p>
273+
<p>Use below definitions to configure Event Recorder initialization and recording level filter setup.</p>
274+
<div class="fragment"><div class="line"><span class="preprocessor">#define configEVR_INITIALIZE</span></div>
275+
</div><!-- fragment --><table class="doxtable">
276+
<tr>
277+
<th>Value </th><th>Description </th></tr>
278+
<tr>
279+
<td>0 </td><td>Disable Event Recorder initialization </td></tr>
280+
<tr>
281+
<td>1 </td><td>Enable Event Recorder initialization </td></tr>
282+
</table>
283+
<p>Definition configEVR_INITIALIZE enables Event Recorder initialization during execution of function <a class="el" href="group__freertos__setup.html#ga943f40b05c79f40c73d67b1adcbe3dbe">EvrFreeRTOSSetup</a>. Default value is <span class="XML-Token">1</span>.</p>
284+
<div class="fragment"><div class="line"><span class="preprocessor">#define configEVR_SETUP_LEVEL</span></div>
285+
</div><!-- fragment --><table class="doxtable">
286+
<tr>
287+
<th>Value </th><th>Description </th></tr>
288+
<tr>
289+
<td>0 </td><td>Disable recording level filter setup </td></tr>
290+
<tr>
291+
<td>1 </td><td>Enable recording level filter setup </td></tr>
292+
</table>
293+
<p>Definition configEVR_SETUP_LEVEL enables setup of recording level filter for events generated by FreeRTOS. Recording level is configured during execution of function <a class="el" href="group__freertos__setup.html#ga943f40b05c79f40c73d67b1adcbe3dbe">EvrFreeRTOSSetup</a>. Default value is <span class="XML-Token">1</span>.</p>
294+
<div class="fragment"><div class="line"><span class="preprocessor">#define configEVR_LEVEL_TASKS</span></div>
295+
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define configEVR_LEVEL_QUEUE</span></div>
296+
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define configEVR_LEVEL_TIMERS</span></div>
297+
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define configEVR_LEVEL_EVENTGROUPS</span></div>
298+
<div class="line"><span class="preprocessor"></span><span class="preprocessor">#define configEVR_LEVEL_HEAP</span></div>
299+
<div class="line"><span class="preprocessor">#define configEVR_LEVEL_STREAMBUFFER</span></div>
300+
</div><!-- fragment --><table class="doxtable">
301+
<tr>
302+
<th>Value </th><th>Description </th></tr>
303+
<tr>
304+
<td>0x00 </td><td>Disable event generation </td></tr>
305+
<tr>
306+
<td>0x01 </td><td>Enable generation of error events </td></tr>
307+
<tr>
308+
<td>0x05 </td><td>Enable generation of error and operational events </td></tr>
309+
<tr>
310+
<td>0x0F </td><td>Enable generation of all events </td></tr>
311+
</table>
312+
<p>Definitions configEVR_LEVEL_x set the recording level bitmask for events generated by each function group. They are taken into account only when recording level filter setup is enabled. Default value is <span class="XML-Token">0x05</span>. </p>
236313
</div></div><!-- contents -->
237314
</div><!-- doc-content -->
238315
<!-- start footer part -->
239316
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
240317
<ul>
241-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
318+
<li class="footer">Generated on Fri Apr 12 2019 08:49:20 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
242319
<!--
243320
<a href="http://www.doxygen.org/index.html">
244321
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/dir_46cf4373772806b8331687559c626178.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -123,7 +123,7 @@
123123
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
124124
<ul>
125125
<li class="navelem"><a class="el" href="dir_e7fa9f9ff84ec6f18f923fb2418bfd4b.html">CMSIS</a></li><li class="navelem"><a class="el" href="dir_6fbc6882f8daffdaafc25c2f1839223d.html">RTOS2</a></li><li class="navelem"><a class="el" href="dir_4c727e77617e41be30cca75e10c711ee.html">FreeRTOS</a></li><li class="navelem"><a class="el" href="dir_46cf4373772806b8331687559c626178.html">Include</a></li>
126-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
126+
<li class="footer">Generated on Fri Apr 12 2019 08:49:21 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
127127
<!--
128128
<a href="http://www.doxygen.org/index.html">
129129
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/dir_4c727e77617e41be30cca75e10c711ee.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -123,7 +123,7 @@
123123
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
124124
<ul>
125125
<li class="navelem"><a class="el" href="dir_e7fa9f9ff84ec6f18f923fb2418bfd4b.html">CMSIS</a></li><li class="navelem"><a class="el" href="dir_6fbc6882f8daffdaafc25c2f1839223d.html">RTOS2</a></li><li class="navelem"><a class="el" href="dir_4c727e77617e41be30cca75e10c711ee.html">FreeRTOS</a></li>
126-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
126+
<li class="footer">Generated on Fri Apr 12 2019 08:49:21 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
127127
<!--
128128
<a href="http://www.doxygen.org/index.html">
129129
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/dir_6fbc6882f8daffdaafc25c2f1839223d.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -123,7 +123,7 @@
123123
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
124124
<ul>
125125
<li class="navelem"><a class="el" href="dir_e7fa9f9ff84ec6f18f923fb2418bfd4b.html">CMSIS</a></li><li class="navelem"><a class="el" href="dir_6fbc6882f8daffdaafc25c2f1839223d.html">RTOS2</a></li>
126-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
126+
<li class="footer">Generated on Fri Apr 12 2019 08:49:21 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
127127
<!--
128128
<a href="http://www.doxygen.org/index.html">
129129
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/dir_e7fa9f9ff84ec6f18f923fb2418bfd4b.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -123,7 +123,7 @@
123123
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
124124
<ul>
125125
<li class="navelem"><a class="el" href="dir_e7fa9f9ff84ec6f18f923fb2418bfd4b.html">CMSIS</a></li>
126-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
126+
<li class="footer">Generated on Fri Apr 12 2019 08:49:21 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
127127
<!--
128128
<a href="http://www.doxygen.org/index.html">
129129
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/examples.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -154,7 +154,7 @@ <h1><a class="anchor" id="examples_cmsis_a9"></a>
154154
<!-- start footer part -->
155155
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
156156
<ul>
157-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
157+
<li class="footer">Generated on Fri Apr 12 2019 08:49:20 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
158158
<!--
159159
<a href="http://www.doxygen.org/index.html">
160160
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6
16.4 KB
Loading

docs/General/html/functionOverview.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -233,7 +233,7 @@ <h2><a href="http://arm-software.github.io/CMSIS_5/RTOS2/html/group__CMSIS__RTOS
233233
<!-- start footer part -->
234234
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
235235
<ul>
236-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
236+
<li class="footer">Generated on Fri Apr 12 2019 08:49:20 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
237237
<!--
238238
<a href="http://www.doxygen.org/index.html">
239239
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

docs/General/html/group__freertos__evr.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
<td id="projectlogo"><img alt="Logo" src="CMSIS_Logo_Final.png"/></td>
3333
<td style="padding-left: 0.5em;">
3434
<div id="projectname">CMSIS-FreeRTOS
35-
&#160;<span id="projectnumber">Version 10.0.1</span>
35+
&#160;<span id="projectnumber">Version 10.2.0</span>
3636
</div>
3737
<div id="projectbrief">CMSIS-RTOS2 compliant FreeRTOS Implementation</div>
3838
</td>
@@ -153,7 +153,7 @@
153153
<!-- start footer part -->
154154
<div id="nav-path" class="navpath"><!-- id is needed for treeview function! -->
155155
<ul>
156-
<li class="footer">Generated on Thu Feb 22 2018 12:06:39 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
156+
<li class="footer">Generated on Fri Apr 12 2019 08:49:20 for CMSIS-FreeRTOS by ARM Ltd. All rights reserved.
157157
<!--
158158
<a href="http://www.doxygen.org/index.html">
159159
<img class="footer" src="doxygen.png" alt="doxygen"/></a> 1.8.6

0 commit comments

Comments
 (0)