]> begriffs open source - cmsis-freertos/blob - ARM.CMSIS-FreeRTOS.pdsc
Updated to CMSIS RTOS2 API 2.1.3
[cmsis-freertos] / ARM.CMSIS-FreeRTOS.pdsc
1 <?xml version="1.0" encoding="utf-8"?>
2
3 <package schemaVersion="1.4" xmlns:xs="http://www.w3.org/2001/XMLSchema-instance" xs:noNamespaceSchemaLocation="PACK.xsd">
4   <vendor>ARM</vendor>
5   <name>CMSIS-FreeRTOS</name>
6   <description>Bundle of FreeRTOS for Cortex-M and Cortex-A</description>
7   <url>http://www.keil.com/pack/</url>
8   <license>License/license.txt</license>
9     
10   <releases>
11     <release version="10.0.2-dev1">
12       CMSIS:RTOS2:FreeRTOS update:
13       - Updated to CMSIS API 2.1.3
14     </release>
15     <release version="10.0.2-dev0">
16       CMSIS:RTOS2:FreeRTOS update:
17       - Corrected osDelayUntil execution duration
18     </release>
19     <release version="10.0.1" date="2018-02-20">
20       FreeRTOS 10.0.0
21       Maintenance for CMSIS 5.3.0: 
22        - Added queue registry support to CMSIS:RTOS2:FreeRTOS component.
23        - Updated CMSIS-FreeRTOS component view to display queue, mutex and semaphore objects.
24        - Updated to CMSIS RTOS2 API 2.1.2 and OS Tick API 1.0.1.
25        - Fixed context switch response latency for API calls from ISR.
26     </release>
27     <release version="9.1.0" date="2017-08-11">
28       FreeRTOS 9.0.0
29       Maintenance release for CMSIS 5.1.0:
30       - Added support for ARM Compiler 6
31       - Updated Cortex-A example to use IRQ Controller component
32       - Corrected stack size allocation in RTOS2 osThreadNew function
33       - Added support for OS Tick component
34       - Added documentation for configuration options (native/CMSIS-RTOS2)
35       - Debug event TaskIncrementTick level set to Detail
36     </release>
37     <release version="9.0.0" date="2017-03-13">
38       Initial release version:
39       - native FreeRTOS component (RTOS: Variant=FreeRTOS)
40       - CMSIS-RTOS FreeRTOS for Cortex-M and Cortex-A9 (CMSIS:RTOS:FreeRTOS, CMSIS:RTOS2:FreeRTOS)
41     </release>
42   </releases>
43
44   <requirements>
45     <packages>
46       <package vendor="ARM" name="CMSIS" version="5.3.0-0"/>
47     </packages>
48   </requirements>
49   
50   <conditions>
51     <condition id="ARMCC6">
52       <accept Tcompiler="ARMCC" Toptions="AC6"/>
53       <accept Tcompiler="ARMCC" Toptions="AC6LTO"/>
54     </condition>
55     <condition id="ARMCC">
56       <require Tcompiler="ARMCC" Toptions="AC5"/>
57     </condition>
58     <condition id="GCC">
59       <require Tcompiler="GCC"/>
60     </condition>
61     <condition id="IAR">
62       <require Tcompiler="IAR"/>
63     </condition>
64     <condition id="ARMCC GCC">
65       <accept Tcompiler="ARMCC"/>
66       <accept Tcompiler="GCC"/>
67     </condition>
68     <condition id="ARMCC GCC IAR">
69       <accept Tcompiler="ARMCC"/>
70       <accept Tcompiler="GCC"/>
71       <accept Tcompiler="IAR"/>
72     </condition>
73     
74     <condition id="CM0">
75       <description>Cortex-M0 or Cortex-M0+ or SC000 processor based device</description>
76       <accept Dcore="Cortex-M0"/>
77       <accept Dcore="Cortex-M0+"/>
78       <accept Dcore="SC000"/>
79     </condition>
80     
81     <condition id="CM3">
82       <description>Cortex-M3 or SC300 processor based device</description>
83       <accept Dcore="Cortex-M3"/>
84       <accept Dcore="SC300"/>
85     </condition>
86     
87     <condition id="CM4">
88       <description>Cortex-M4 processor based device</description>
89       <require Dcore="Cortex-M4" Dfpu="NO_FPU"/>
90     </condition>
91     
92     <condition id="CM4_FP">
93       <description>Cortex-M4 processor based device using Floating Point Unit</description>
94       <require Dcore="Cortex-M4" Dfpu="FPU"/>
95     </condition>
96     
97     <condition id="CM7">
98       <description>Cortex-M7 processor based device</description>
99       <require Dcore="Cortex-M7" Dfpu="NO_FPU"/>
100     </condition>
101     
102     <condition id="CM7_FP">
103       <description>Cortex-M7 processor based device using Floating Point Unit</description>
104       <accept Dcore="Cortex-M7" Dfpu="SP_FPU"/>
105       <accept Dcore="Cortex-M7" Dfpu="DP_FPU"/>
106     </condition>
107     
108     <condition id="CM7_SP">
109       <description>Cortex-M7 processor based device using Floating Point Unit (SP)</description>
110       <require Dcore="Cortex-M7" Dfpu="SP_FPU"/>
111     </condition>
112     
113     <condition id="CM7_DP">
114       <description>Cortex-M7 processor based device using Floating Point Unit (DP)</description>
115       <require Dcore="Cortex-M7" Dfpu="DP_FPU"/>
116     </condition>
117
118     <condition id="CA9_DP">
119       <description>Cortex-A9 processor based device using Floating Point Unit (DP)</description>
120       <require Dcore="Cortex-A9" Dfpu="DP_FPU"/>
121     </condition>
122
123     <condition id="CoreM">
124       <description>Cortex-M processor based device</description>
125       <accept condition="CM0"/>
126       <accept condition="CM3"/>
127       <accept condition="CM4"/>
128       <accept condition="CM4_FP"/>
129       <accept condition="CM7"/>
130       <accept condition="CM7_FP"/>
131     </condition>
132
133     <condition id="CoreA">
134       <description>Cortex-A processor based device</description>
135       <accept condition="CA9_DP"/>
136     </condition>
137
138     <!-- ARMCC compiler -->
139     <condition id="CM0_ARMCC">
140       <description>Cortex-M0 or Cortex-M0+ or SC000 processor based device for the ARM Compiler 5</description>
141       <require condition="CM0"/>
142       <require condition="ARMCC"/>
143     </condition>
144
145     <condition id="CM3_ARMCC">
146       <description>Cortex-M3 or SC300 processor based device for the ARM Compiler 5</description>
147       <require condition="CM3"/>
148       <require condition="ARMCC"/>
149     </condition>
150
151     <condition id="CM4_ARMCC">
152       <description>Cortex-M4 processor based device for the ARM Compiler 5</description>
153       <require condition="CM4"/>
154       <require condition="ARMCC"/>
155     </condition>
156     <condition id="CM4_FP_ARMCC">
157       <description>Cortex-M4 processor based device using Floating Point Unit for the ARM Compiler 5</description>
158       <require condition="CM4_FP"/>
159       <require condition="ARMCC"/>
160     </condition>
161
162     <condition id="CM7_ARMCC">
163       <description>Cortex-M7 processor based device for the ARM Compiler 5</description>
164       <require condition="CM7"/>
165       <require condition="ARMCC"/>
166     </condition>
167     <condition id="CM7_SP_ARMCC">
168       <description>Cortex-M7 processor based device using Floating Point Unit (SP) for the ARM Compiler 5</description>
169       <require condition="CM7_SP"/>
170       <require condition="ARMCC"/>
171     </condition>
172     <condition id="CM7_DP_ARMCC">
173       <description>Cortex-M7 processor based device using Floating Point Unit (DP) for the ARM Compiler 5</description>
174       <require condition="CM7_DP"/>
175       <require condition="ARMCC"/>
176     </condition>
177
178     <condition id="CA9_DP_ARMCC">
179       <description>Cortex-A9 processor based device for the ARM Compiler 5</description>
180       <require condition="CA9_DP"/>
181       <require condition="ARMCC"/>
182     </condition>
183
184     <!-- ARMCC6 compiler -->
185     <condition id="CM0_ARMCC6">
186       <description>Cortex-M0 or Cortex-M0+ or SC000 processor based device for the ARM Compiler 6</description>
187       <require condition="CM0"/>
188       <require condition="ARMCC6"/>
189     </condition>
190
191     <condition id="CM3_ARMCC6">
192       <description>Cortex-M3 or SC300 processor based device for the ARM Compiler 6</description>
193       <require condition="CM3"/>
194       <require condition="ARMCC6"/>
195     </condition>
196
197     <condition id="CM4_ARMCC6">
198       <description>Cortex-M4 processor based device for the ARM Compiler 6</description>
199       <require condition="CM4"/>
200       <require condition="ARMCC6"/>
201     </condition>
202     <condition id="CM4_FP_ARMCC6">
203       <description>Cortex-M4 processor based device using Floating Point Unit for the ARM Compiler 6</description>
204       <require condition="CM4_FP"/>
205       <require condition="ARMCC6"/>
206     </condition>
207
208     <condition id="CM7_ARMCC6">
209       <description>Cortex-M7 processor based device for the ARM Compiler 6</description>
210       <require condition="CM7"/>
211       <require condition="ARMCC6"/>
212     </condition>
213     <condition id="CM7_SP_ARMCC6">
214       <description>Cortex-M7 processor based device using Floating Point Unit (SP) for the ARM Compiler 6</description>
215       <require condition="CM7_SP"/>
216       <require condition="ARMCC6"/>
217     </condition>
218     <condition id="CM7_DP_ARMCC6">
219       <description>Cortex-M7 processor based device using Floating Point Unit (DP) for the ARM Compiler 6</description>
220       <require condition="CM7_DP"/>
221       <require condition="ARMCC6"/>
222     </condition>
223
224     <condition id="CA9_DP_ARMCC6">
225       <description>Cortex-A9 processor based device for the ARM Compiler 6</description>
226       <require condition="CA9_DP"/>
227       <require condition="ARMCC6"/>
228     </condition>
229
230     <!-- GCC compiler -->
231     <condition id="CM0_GCC">
232       <description>Cortex-M0 or Cortex-M0+ or SC000 processor based device for the GCC Compiler</description>
233       <require condition="CM0"/>
234       <require condition="GCC"/>
235     </condition>
236
237     <condition id="CM3_GCC">
238       <description>Cortex-M3 or SC300 processor based device for the GCC Compiler</description>
239       <require condition="CM3"/>
240       <require condition="GCC"/>
241     </condition>
242
243     <condition id="CM4_GCC">
244       <description>Cortex-M4 processor based device for the GCC Compiler</description>
245       <require condition="CM4"/>
246       <require condition="GCC"/>
247     </condition>
248
249     <condition id="CM4_FP_GCC">
250       <description>Cortex-M4 processor based device using Floating Point Unit for the GCC Compiler</description>
251       <require condition="CM4_FP"/>
252       <require condition="GCC"/>
253     </condition>
254
255     <condition id="CM7_GCC">
256       <description>Cortex-M7 processor based device for the GCC Compiler</description>
257       <require condition="CM7"/>
258       <require condition="GCC"/>
259     </condition>
260
261     <condition id="CM7_SP_GCC">
262       <description>Cortex-M7 processor based device using Floating Point Unit (SP) for the GCC Compiler</description>
263       <require condition="CM7_SP"/>
264       <require condition="GCC"/>
265     </condition>
266
267     <condition id="CM7_DP_GCC">
268       <description>Cortex-M7 processor based device using Floating Point Unit (DP) for the GCC Compiler</description>
269       <require condition="CM7_DP"/>
270       <require condition="GCC"/>
271     </condition>
272
273     <condition id="CA9_DP_GCC">
274       <description>Cortex-A9 processor based device for the GCC Compiler</description>
275       <require condition="CA9_DP"/>
276       <require condition="GCC"/>
277     </condition>
278
279     <condition id="CMSIS RTOS2 FreeRTOS">
280       <require Cclass="CMSIS" Cgroup="RTOS2" Csub="FreeRTOS"/>  
281     </condition>
282
283     <condition id="FreeRTOS">
284       <require condition="ARMCC GCC"/>
285       <require Cclass="Device" Cgroup="Startup"/>
286       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Config"/>
287       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Heap"/>
288     </condition>
289
290     <condition id="FreeRTOS Core">
291       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Core"/>
292     </condition>
293
294     <condition id="FreeRTOS RTOS2 Core">
295       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Event Groups"/>
296       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Timers"/>
297       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Core"/>
298       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Config" Cvariant="CMSIS RTOS2"/>
299     </condition>
300
301     <condition id="FreeRTOS RTOS2 CortexM">
302       <require condition="CoreM"/>
303       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Event Groups"/>
304       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Timers"/>
305       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Core"/>
306       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Config" Cvariant="CMSIS RTOS2"/>
307     </condition>
308
309     <condition id="FreeRTOS RTOS2 CortexA">
310       <require condition="CoreA"/>
311       <require Cclass="Device" Cgroup="IRQ Controller"/>
312       <require Cclass="Device" Cgroup="OS Tick"/>
313       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Event Groups"/>
314       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Timers"/>
315       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Core"/>
316       <require Cclass="RTOS" Cbundle="FreeRTOS" Cgroup="Config" Cvariant="CMSIS RTOS2"/>
317     </condition>
318
319   </conditions>
320
321   <components>
322     <!-- CMSIS-RTOS FreeRTOS component -->
323     <component Cclass="CMSIS" Cgroup="RTOS" Csub="FreeRTOS" Cversion="10.0.1" Capiversion="1.0.0" condition="FreeRTOS RTOS2 Core">
324       <description>CMSIS-RTOS implementation for Cortex-M based on FreeRTOS</description>
325       <RTE_Components_h>
326         #define RTE_CMSIS_RTOS                  /* CMSIS-RTOS */
327         #define RTE_CMSIS_RTOS_FreeRTOS         /* CMSIS-RTOS FreeRTOS */
328       </RTE_Components_h>
329       <files>
330         <file category="header" name="CMSIS/RTOS2/FreeRTOS/Include1/cmsis_os.h"/>
331         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/cmsis_os1.c"/>
332       </files>
333     </component>
334
335     <!-- CMSIS-RTOS2 FreeRTOS component -->
336     <component Cclass="CMSIS" Cgroup="RTOS2" Csub="FreeRTOS" Cversion="10.0.2" Capiversion="2.1.3" condition="FreeRTOS RTOS2 CortexM">
337       <description>CMSIS-RTOS2 implementation for Cortex-M based on FreeRTOS</description>
338       <RTE_Components_h>
339         #define RTE_CMSIS_RTOS2                 /* CMSIS-RTOS2 */
340         #define RTE_CMSIS_RTOS2_FreeRTOS        /* CMSIS-RTOS2 FreeRTOS */
341       </RTE_Components_h>
342       <files>
343         <file category="doc"    name="CMSIS/Documentation/General/html/index.html"/>
344         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/cmsis_os2.c"/>
345         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/ARM/clib_arm.c" condition="ARMCC"/>
346         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/ARM/clib_arm.c" condition="ARMCC6"/>
347
348         <!-- OS Tick (SysTick) -->
349         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/os_systick.c"/>
350       </files>
351     </component>
352
353     <component Cclass="CMSIS" Cgroup="RTOS2" Csub="FreeRTOS" Cversion="10.0.2" Capiversion="2.1.3" condition="FreeRTOS RTOS2 CortexA">
354       <description>CMSIS-RTOS2 implementation for Cortex-A based on FreeRTOS</description>
355       <RTE_Components_h>
356         #define RTE_CMSIS_RTOS2                 /* CMSIS-RTOS2 */
357         #define RTE_CMSIS_RTOS2_FreeRTOS        /* CMSIS-RTOS2 FreeRTOS */
358       </RTE_Components_h>
359       <files>
360         <file category="doc"    name="CMSIS/Documentation/General/html/index.html"/>
361         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/cmsis_os2.c"/>
362         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/ARM/clib_arm.c" condition="ARMCC"/>
363         <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/ARM/clib_arm.c" condition="ARMCC6"/>
364         
365         <file category="source" attr="config" name="CMSIS/RTOS2/FreeRTOS/Source/handlers.c" version="9.1.0"/>
366       </files>
367     </component>
368
369     <bundle Cbundle="FreeRTOS" Cclass="RTOS" Cversion="10.0.1">
370       <description>FreeRTOS Real Time Kernel</description>
371       <doc>http://www.freertos.org/Documentation/FreeRTOS_Reference_Manual_V10.0.0.pdf</doc>
372       <component Cgroup="Core" Cversion="10.0.1" condition="FreeRTOS">
373         <description>Core components API (Kernel, Tasks, Semaphores, Mutexes, Queues)</description>
374         <RTE_Components_h>
375           #define RTE_RTOS_FreeRTOS_CORE          /* RTOS FreeRTOS Core */
376         </RTE_Components_h>
377         <files>
378           <file category="include" name="Source/include/"/>
379   
380           <file category="header"  name="Source/include/FreeRTOS.h"/>
381           <file category="header"  name="Source/include/queue.h"/>
382           <file category="header"  name="Source/include/semphr.h"/>
383           <file category="header"  name="Source/include/task.h"/>
384   
385           <file category="source"  name="Source/list.c"/>
386           <file category="source"  name="Source/queue.c"/>
387           <file category="source"  name="Source/tasks.c"/>
388   
389           <file category="include"   condition="CM0_ARMCC"    name="Source/portable/RVDS/ARM_CM0/"/>
390           <file category="source"    condition="CM0_ARMCC"    name="Source/portable/RVDS/ARM_CM0/port.c"/>
391           <file category="include"   condition="CM3_ARMCC"    name="Source/portable/RVDS/ARM_CM3/"/>
392           <file category="source"    condition="CM3_ARMCC"    name="Source/portable/RVDS/ARM_CM3/port.c"/>
393           <file category="include"   condition="CM4_ARMCC"    name="Source/portable/RVDS/ARM_CM3/"/>
394           <file category="source"    condition="CM4_ARMCC"    name="Source/portable/RVDS/ARM_CM3/port.c"/>
395           <file category="include"   condition="CM4_FP_ARMCC" name="Source/portable/RVDS/ARM_CM4F/"/>
396           <file category="source"    condition="CM4_FP_ARMCC" name="Source/portable/RVDS/ARM_CM4F/port.c"/>
397           <file category="include"   condition="CM7_ARMCC"    name="Source/portable/RVDS/ARM_CM3/"/>
398           <file category="source"    condition="CM7_ARMCC"    name="Source/portable/RVDS/ARM_CM3/port.c"/>
399           <file category="include"   condition="CM7_DP_ARMCC" name="Source/portable/RVDS/ARM_CM7/r0p1/"/>
400           <file category="source"    condition="CM7_DP_ARMCC" name="Source/portable/RVDS/ARM_CM7/r0p1/port.c"/>
401           <file category="include"   condition="CM7_SP_ARMCC" name="Source/portable/RVDS/ARM_CM7/r0p1/"/>
402           <file category="source"    condition="CM7_SP_ARMCC" name="Source/portable/RVDS/ARM_CM7/r0p1/port.c"/>
403           <file category="include"   condition="CA9_DP_ARMCC" name="Source/portable/RVDS/ARM_CA9/"/>
404           <file category="source"    condition="CA9_DP_ARMCC" name="Source/portable/RVDS/ARM_CA9/port.c"/>
405           <file category="sourceAsm" condition="CA9_DP_ARMCC" name="Source/portable/RVDS/ARM_CA9/portASM.s"/>
406   
407           <file category="include"   condition="CM0_ARMCC6"    name="Source/portable/GCC/ARM_CM0/"/>
408           <file category="source"    condition="CM0_ARMCC6"    name="Source/portable/GCC/ARM_CM0/port.c"/>
409           <file category="include"   condition="CM3_ARMCC6"    name="Source/portable/GCC/ARM_CM3/"/>
410           <file category="source"    condition="CM3_ARMCC6"    name="Source/portable/GCC/ARM_CM3/port.c"/>
411           <file category="include"   condition="CM4_ARMCC6"    name="Source/portable/GCC/ARM_CM3/"/>
412           <file category="source"    condition="CM4_ARMCC6"    name="Source/portable/GCC/ARM_CM3/port.c"/>
413           <file category="include"   condition="CM4_FP_ARMCC6" name="Source/portable/GCC/ARM_CM4F/"/>
414           <file category="source"    condition="CM4_FP_ARMCC6" name="Source/portable/GCC/ARM_CM4F/port.c"/>
415           <file category="include"   condition="CM7_ARMCC6"    name="Source/portable/GCC/ARM_CM3/"/>
416           <file category="source"    condition="CM7_ARMCC6"    name="Source/portable/GCC/ARM_CM3/port.c"/>
417           <file category="include"   condition="CM7_DP_ARMCC6" name="Source/portable/GCC/ARM_CM7/r0p1/"/>
418           <file category="source"    condition="CM7_DP_ARMCC6" name="Source/portable/GCC/ARM_CM7/r0p1/port.c"/>
419           <file category="include"   condition="CM7_SP_ARMCC6" name="Source/portable/GCC/ARM_CM7/r0p1/"/>
420           <file category="source"    condition="CM7_SP_ARMCC6" name="Source/portable/GCC/ARM_CM7/r0p1/port.c"/>
421           <file category="include"   condition="CA9_DP_ARMCC6" name="Source/portable/GCC/ARM_CA9/"/>
422           <file category="source"    condition="CA9_DP_ARMCC6" name="Source/portable/GCC/ARM_CA9/port.c"/>
423           <file category="sourceAsm" condition="CA9_DP_ARMCC6" name="Source/portable/GCC/ARM_CA9/portASM.S"/>
424   
425           <file category="include"   condition="CM0_GCC"    name="Source/portable/GCC/ARM_CM0/"/>
426           <file category="source"    condition="CM0_GCC"    name="Source/portable/GCC/ARM_CM0/port.c"/>
427           <file category="include"   condition="CM3_GCC"    name="Source/portable/GCC/ARM_CM3/"/>
428           <file category="source"    condition="CM3_GCC"    name="Source/portable/GCC/ARM_CM3/port.c"/>
429           <file category="include"   condition="CM4_GCC"    name="Source/portable/GCC/ARM_CM3/"/>
430           <file category="source"    condition="CM4_GCC"    name="Source/portable/GCC/ARM_CM3/port.c"/>
431           <file category="include"   condition="CM4_FP_GCC" name="Source/portable/GCC/ARM_CM4F/"/>
432           <file category="source"    condition="CM4_FP_GCC" name="Source/portable/GCC/ARM_CM4F/port.c"/>
433           <file category="include"   condition="CM7_GCC"    name="Source/portable/GCC/ARM_CM3/"/>
434           <file category="source"    condition="CM7_GCC"    name="Source/portable/GCC/ARM_CM3/port.c"/>
435           <file category="include"   condition="CM7_DP_GCC" name="Source/portable/GCC/ARM_CM7/r0p1/"/>
436           <file category="source"    condition="CM7_DP_GCC" name="Source/portable/GCC/ARM_CM7/r0p1/port.c"/>
437           <file category="include"   condition="CM7_SP_GCC" name="Source/portable/GCC/ARM_CM7/r0p1/"/>
438           <file category="source"    condition="CM7_SP_GCC" name="Source/portable/GCC/ARM_CM7/r0p1/port.c"/>
439           <file category="include"   condition="CA9_DP_GCC" name="Source/portable/GCC/ARM_CA9/"/>
440           <file category="source"    condition="CA9_DP_GCC" name="Source/portable/GCC/ARM_CA9/port.c"/>
441           <file category="sourceAsm" condition="CA9_DP_GCC" name="Source/portable/GCC/ARM_CA9/portASM.S"/>
442
443           <file category="header" name="CMSIS/RTOS2/FreeRTOS/Include/freertos_evr.h"/>
444           <file category="source" name="CMSIS/RTOS2/FreeRTOS/Source/freertos_evr.c"/>
445           <file category="other"  name="CMSIS/RTOS2/FreeRTOS/FreeRTOS.scvd"/>
446         </files>
447       </component>
448   
449       <component Cgroup="Config" Cvariant="CMSIS RTOS2" Cversion="10.0.1" condition="CMSIS RTOS2 FreeRTOS">
450         <description>FreeRTOS CMSIS-RTOS2 API configuration file</description>
451         <RTE_Components_h>
452           #define RTE_RTOS_FreeRTOS_CONFIG_RTOS2  /* RTOS FreeRTOS Config for CMSIS RTOS2 API */
453         </RTE_Components_h>
454         <files>
455           <file category="doc"    name="CMSIS/Documentation/General/html/cre_freertos_proj.html#cmsis_freertos_config"/>
456           <file category="header" attr="config" name="CMSIS/RTOS2/FreeRTOS/Config/ARMCM/FreeRTOSConfig.h" version="10.0.1" condition="CoreM"/>
457           <file category="header" attr="config" name="CMSIS/RTOS2/FreeRTOS/Config/ARMCA/FreeRTOSConfig.h" version="10.0.1" condition="CoreA"/>
458         </files>
459       </component>
460      
461       <component Cgroup="Config" Cvariant="FreeRTOS" Cversion="10.0.1" condition="FreeRTOS Core">
462         <description>FreeRTOS API configuration file</description>
463         <RTE_Components_h>
464           #define RTE_RTOS_FreeRTOS_CONFIG        /* RTOS FreeRTOS Config for FreeRTOS API */
465         </RTE_Components_h>
466         <files>
467           <file category="doc"    name="CMSIS/Documentation/General/html/cre_freertos_proj.html#native_freertos_config"/>
468           <file category="header" attr="config" name="Config/ARMCM/FreeRTOSConfig.h" version="10.0.0" condition="CoreM"/>
469           <file category="header" attr="config" name="Config/ARMCA/FreeRTOSConfig.h" version="10.0.0" condition="CoreA"/>
470         </files>
471       </component>
472      
473       <component Cgroup="Coroutines" Cversion="10.0.1" condition="FreeRTOS Core">
474         <description>Co-routine API</description>
475         <RTE_Components_h>
476           #define RTE_RTOS_FreeRTOS_COROUTINE     /* RTOS FreeRTOS Co-routines */
477         </RTE_Components_h>
478         <files>
479           <file category="header" name="Source/include/croutine.h"/>
480           <file category="source" name="Source/croutine.c"/>
481         </files>
482       </component>
483      
484       <component Cgroup="Event Groups" Cversion="10.0.1" condition="FreeRTOS Core">
485         <description>Event Group API</description>
486         <RTE_Components_h>
487           #define RTE_RTOS_FreeRTOS_EVENTGROUPS   /* RTOS FreeRTOS Event Groups */
488         </RTE_Components_h>
489         <files>
490           <file category="header" name="Source/include/event_groups.h"/>
491           <file category="source" name="Source/event_groups.c"/>
492         </files>
493       </component>
494
495       <component Cgroup="Stream Buffer" Cversion="10.0.1" condition="FreeRTOS Core">
496         <description>Stream Buffer API</description>
497         <RTE_Components_h>
498           #define RTE_RTOS_FreeRTOS_STREAM_BUFFER /* RTOS FreeRTOS Stream Buffers */
499         </RTE_Components_h>
500         <files>
501           <file category="header" name="Source/include/stream_buffer.h"/>
502           <file category="source" name="Source/stream_buffer.c"/>
503         </files>
504       </component>
505
506       <component Cgroup="Message Buffer" Cversion="10.0.1" condition="FreeRTOS Core">
507         <description>Message Buffer API</description>
508         <RTE_Components_h>
509           #define RTE_RTOS_FreeRTOS_MESSAGE_BUFFER /* RTOS FreeRTOS Message Buffers */
510         </RTE_Components_h>
511         <files>
512           <file category="header" name="Source/include/message_buffer.h"/>
513           <file category="source" name="Source/stream_buffer.c"/>
514         </files>
515       </component>
516      
517       <component Cgroup="Timers" Cversion="10.0.1" condition="FreeRTOS Core">
518         <description>Timer API</description>
519         <RTE_Components_h>
520           #define RTE_RTOS_FreeRTOS_TIMERS        /* RTOS FreeRTOS Timers */
521         </RTE_Components_h>
522         <files>
523           <file category="header" name="Source/include/timers.h"/>
524           <file category="source" name="Source/timers.c"/>
525         </files>
526       </component>
527      
528       <component Cgroup="Heap" Cvariant="Heap_1" Cversion="10.0.1" condition="FreeRTOS Core">
529         <description>Very simple, does not permit memory to be freed.</description>
530         <RTE_Components_h>
531           #define RTE_RTOS_FreeRTOS_HEAP_1        /* RTOS FreeRTOS Heap 1 */
532         </RTE_Components_h>
533         <files>
534           <file category="source" name="Source/portable/MemMang/heap_1.c"/>
535           <file category="doc"    name="http://www.freertos.org/a00111.html"/>
536         </files>
537       </component>
538      
539       <component Cgroup="Heap" Cvariant="Heap_2" Cversion="10.0.1" condition="FreeRTOS Core">
540         <description>Permits memory to be freed, but not does coalescence adjacent free memory blocks.</description>
541         <RTE_Components_h>
542           #define RTE_RTOS_FreeRTOS_HEAP_2        /* RTOS FreeRTOS Heap 2 */
543         </RTE_Components_h>
544         <files>
545           <file category="source" name="Source/portable/MemMang/heap_2.c"/>
546           <file category="doc"    name="http://www.freertos.org/a00111.html"/>
547         </files>
548       </component>
549      
550       <component Cgroup="Heap" Cvariant="Heap_3" Cversion="10.0.1" condition="FreeRTOS Core">
551         <description>Wraps the standard malloc() and free() for thread safety.</description>
552         <RTE_Components_h>
553           #define RTE_RTOS_FreeRTOS_HEAP_3        /* RTOS FreeRTOS Heap 3 */
554         </RTE_Components_h>
555         <files>
556           <file category="source" name="Source/portable/MemMang/heap_3.c"/>
557           <file category="doc"    name="http://www.freertos.org/a00111.html"/>
558         </files>
559       </component>
560      
561       <component Cgroup="Heap" Cvariant="Heap_4" Cversion="10.0.1" condition="FreeRTOS Core" isDefaultVariant="true">
562         <description>Coalescences adjacent free memory blocks to avoid fragmentation. Includes absolute address placement option.</description>
563         <RTE_Components_h>
564           #define RTE_RTOS_FreeRTOS_HEAP_4        /* RTOS FreeRTOS Heap 4 */
565         </RTE_Components_h>
566         <files>
567           <file category="source" name="Source/portable/MemMang/heap_4.c"/>
568           <file category="doc"    name="http://www.freertos.org/a00111.html"/>
569         </files>
570       </component>
571      
572       <component Cgroup="Heap" Cvariant="Heap_5" Cversion="10.0.1" condition="FreeRTOS Core">
573         <description>Same as Heap_4, with the ability to span the heap across multiple non-adjacent memory areas.</description>
574         <RTE_Components_h>
575           #define RTE_RTOS_FreeRTOS_HEAP_5        /* RTOS FreeRTOS Heap 5 */
576         </RTE_Components_h>
577         <files>
578           <file category="source" name="Source/portable/MemMang/heap_5.c"/>
579           <file category="doc"    name="http://www.freertos.org/a00111.html"/>
580         </files>
581       </component>
582     </bundle>
583   </components>
584
585   <examples>
586     <example name="CMSIS-RTOS2 FreeRTOS Blinky" doc="Abstract.txt" folder="CMSIS/RTOS2/FreeRTOS/Examples/Blinky">
587       <description>CMSIS-RTOS2 Blinky example using FreeRTOS</description>
588       <board name="uVision Simulator" vendor="Keil"/>
589       <project>
590         <environment name="uv" load="Blinky.uvprojx"/>
591       </project>
592       <attributes>
593         <component Cclass="CMSIS" Cgroup="CORE"/>
594         <component Cclass="CMSIS" Cgroup="RTOS2"/>
595         <component Cclass="Device" Cgroup="Startup"/>
596         <category>Getting Started</category>
597       </attributes>
598     </example>
599
600     <example name="CMSIS-RTOS2 FreeRTOS Blinky CA9 (AC5)" doc="Abstract.txt" folder="CMSIS/RTOS2/FreeRTOS/Examples/Blinky_CA9">
601       <description>CMSIS-RTOS2 Blinky example using FreeRTOS for Cortex-A9 (ARM Compiler 5)</description>
602       <board name="Fixed Virtual Platform" vendor="ARM"/>
603       <project>
604         <environment name="ds5" load=".project"/>
605       </project>
606       <attributes>
607         <component Cclass="CMSIS" Cgroup="CORE"/>
608         <component Cclass="CMSIS" Cgroup="RTOS2"/>
609         <component Cclass="Device" Cgroup="Startup"/>
610         <category>Getting Started</category>
611       </attributes>
612     </example>
613
614     <example name="CMSIS-RTOS2 FreeRTOS Blinky CA9 (AC6)" doc="Abstract.txt" folder="CMSIS/RTOS2/FreeRTOS/Examples/Blinky_CA9_AC6">
615       <description>CMSIS-RTOS2 Blinky example using FreeRTOS for Cortex-A9 (ARM Compiler 6)</description>
616       <board name="Fixed Virtual Platform" vendor="ARM"/>
617       <project>
618         <environment name="ds5" load=".project"/>
619       </project>
620       <attributes>
621         <component Cclass="CMSIS" Cgroup="CORE"/>
622         <component Cclass="CMSIS" Cgroup="RTOS2"/>
623         <component Cclass="Device" Cgroup="Startup"/>
624         <category>Getting Started</category>
625       </attributes>
626     </example>
627
628     <example name="Native FreeRTOS Blinky" doc="Abstract.txt" folder="CMSIS/RTOS2/FreeRTOS/Examples/Native_Blinky">
629       <description>Blinky example using FreeRTOS natively</description>
630       <board name="uVision Simulator" vendor="Keil"/>
631       <project>
632         <environment name="uv" load="Blinky.uvprojx"/>
633       </project>
634       <attributes>
635         <component Cclass="CMSIS" Cgroup="CORE"/>
636         <component Cclass="CMSIS" Cgroup="RTOS2"/>
637         <component Cclass="Device" Cgroup="Startup"/>
638         <category>Getting Started</category>
639       </attributes>
640     </example>
641   </examples>
642 </package>