]> begriffs open source - cmsis/blob - CMSIS/DoxyGen/RTOS2/src/cmsis_os2.txt
Clarified the necessity to use an app_main thread to take care of creating and starti...
[cmsis] / CMSIS / DoxyGen / RTOS2 / src / cmsis_os2.txt
1 /**
2 \page genRTOS2IF Generic RTOS Interface
3
4 CMSIS-RTOS2 is a generic API that is agnostic of the underlying RTOS kernel. Application programmers call CMSIS-RTOS2 API
5 functions in the user code to ensure maximum portability from one RTOS to another. Middleware using CMSIS-RTOS2 API takes
6 advantages of this approach by avoiding unnecessary porting efforts.
7
8 \image html "API_Structure.png" "CMSIS-RTOS API Structure"
9
10 A typical CMSIS-RTOS2 API implementation interfaces to an existing real-time kernel. The CMSIS-RTOS2 API provides the
11 following attributes and functionalities:
12  - Function names, identifiers, and parameters are descriptive and easy to understand. The functions are powerful and
13    flexible which reduces the number of functions exposed to the user. 
14  - \ref CMSIS_RTOS_ThreadMgmt allows you to define, create, and control threads.
15  - Interrupt Service Routines (ISR) can \ref CMSIS_RTOS_ISR_Calls "call some CMSIS-RTOS functions". When a CMSIS-RTOS
16    function cannot be called from an ISR context, it rejects the invocation and returns an error code.
17  - Three different event types support communication between multiple threads and/or ISR:
18    - \ref CMSIS_RTOS_ThreadFlagsMgmt "Thread Flags": may be used to indicate specific conditions to a thread.
19    - \ref CMSIS_RTOS_EventFlags "Event Flags": may be used to indicate events to a thread or ISR.
20    - \ref CMSIS_RTOS_Message "Messages": can be sent to a thread or an ISR. Messages are buffered in a queue.
21  - \ref CMSIS_RTOS_MutexMgmt and \ref CMSIS_RTOS_SemaphoreMgmt are incorporated.
22  - CPU time can be scheduled with the following functionalities:
23    - A \a timeout parameter is incorporated in many CMSIS-RTOS functions to avoid system lockup. When a timeout is specified,
24      the system waits until a resource is available or an event occurs. While waiting, other threads are scheduled.
25    - The \ref osDelay and \ref osDelayUntil functions put a thread into the \b WAITING state for a specified period of time.
26    - The \ref osThreadYield provides co-operative thread switching and passes execution to another thread of the same
27      priority.
28  - \ref CMSIS_RTOS_TimerMgmt  functions are used to trigger the execution of functions.
29
30 The CMSIS-RTOS2 API is designed to optionally incorporate multi-processor systems and/or access protection via the Cortex-M
31 Memory Protection Unit (MPU).
32
33 In some RTOS implementations threads may execute on different processors, thus \b message queues may reside in shared memory
34 resources.
35
36 The CMSIS-RTOS2 API encourages the software industry to evolve existing RTOS implementations. RTOS implementations can be
37 different and optimized in various aspects towards the Cortex-M processors. Optional features may be for example
38  - Support of the Cortex-M Memory Protection Unit (MPU).
39  - Support of multi-processor systems.
40  - Support of a DMA controller.
41  - Deterministic context switching.
42  - Round-robin context switching.
43  - Deadlock avoidance, for example with priority inversion.
44  - Zero interrupt latency by using Armv7-M instructions LDREX and STREX.
45
46 \section cmsis_os2_h cmsis_os2.h header file
47
48 The file \b %cmsis_os2.h is a standard header file that interfaces to every CMSIS-RTOS2 compliant real-time operating
49 systems (RTOS). Each implementation is provided the same \b cmsis_os2.h which defines the interface to the \ref rtos_api2.
50
51 Using the \b cmsis_os2.h along with dynamic object allocation allows to create source code or libraries that require no
52 modifications when using on a different CMSIS-RTOS2 implementation.
53
54 \section usingOS2 Using a CMSIS-RTOS2 Implementation
55
56 A CMSIS-RTOS2 component may be provided as library or source code (the picture below shows a library). 
57 A CMSIS-based application is extended with RTOS functionality by adding a CMSIS-RTOS2 component (and typically some configuration files).
58 The \ref cmsis_os2_h gives access to RTOS API functions and is the only interface header required when dynamic object allocation is used.
59 This enables portable application that works with every RTOS kernel event without re-compilation of the source code when the kernel is 
60 changed.
61
62 Static object allocation requires access to RTOS object control block definitions. An implementation specific header file (<i>rtos</i>.h in 
63 the picture below) provides access to such definitions. The section For RTX v5 these definitions are provided in the header file %rtx_os.h that contains this definitions for RTX v5.
64
65
66 \image html "CMSIS_RTOS_Files.png" "CMSIS-RTOS File Structure"
67
68 Once the files are added to a project, the user can start working with the CMSIS-RTOS functions.  A code example is provided
69 below:
70  
71 <b>Code Example</b>
72 \code
73 /*----------------------------------------------------------------------------
74  * CMSIS-RTOS 'main' function template
75  *---------------------------------------------------------------------------*/
76  
77 #include "RTE_Components.h"
78 #include  CMSIS_device_header
79 #include "cmsis_os2.h"
80  
81 /*----------------------------------------------------------------------------
82  * Application main thread
83  *---------------------------------------------------------------------------*/
84 void app_main (void *argument) {
85  
86   // ...
87   for (;;) {}
88 }
89  
90 int main (void) {
91  
92   // System Initialization
93   SystemCoreClockUpdate();
94   // ...
95  
96   osKernelInitialize();                 // Initialize CMSIS-RTOS
97   osThreadNew(app_main, NULL, NULL);    // Create application main thread
98   osKernelStart();                      // Start thread execution
99   for (;;) {}
100 }
101 \endcode
102
103
104 */
105
106
107 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
108 /**
109 \page rtx5_impl RTX v5 Implementation
110
111 Keil RTX version 5 (RTX5) implements the CMSIS-RTOS2 as a native RTOS interface for Arm Cortex-M processor-based devices.
112 A translation layer to CMSIS-RTOS API v1 is provided. Therefore, RTX5 can be used in applications that where previously based
113 on RTX version 4 and CMSIS-RTOS version 1 with minimal effort.
114
115 The following sections provide further details:
116  - \subpage cre_rtx_proj explains how to setup an RTX v5 project in Keil MDK.
117  - \subpage theory_of_operation provides general information about the operation of CMSIS-RTOS RTX v5.
118  - \subpage config_rtx5 describes configuration parameters of CMSIS-RTOS RTX v5.
119  - \subpage creating_RTX5_LIB explains how to build your own CMSIS-RTOS RTX v5 library.
120  - \subpage technicalData5 lists hardware, software, and resource requirements, supplied files, and supported tool chains.
121  - \subpage misraCompliance5 describes the violations to the MISRA standard.
122 */
123
124 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
125 /**
126 \page cre_rtx_proj Create an RTX5 Project
127
128 \if FuSaRTS
129 FuSa RTX5 installation and project setup are explained in \ref fusa_rtx_installation.
130
131 \endif
132
133 \ifnot FuSaRTS
134 The steps to create a microcontroller application using RTX5 are:
135 - Create a new project and select a microcontroller device.
136 - In the Manage Run-Time Environment window, select <b>CMSIS\::CORE</b> and <b>CMSIS\::RTOS2 (API)\::Keil RTX5</b>. You can
137   choose to either add RTX as a library (Variant: \b Library) or to add the full source code (Variant: \b Source - required
138   if using the <a href="http://www.keil.com/pack/doc/compiler/EventRecorder/html/index.html" target="_blank"><b>Event Recorder</b></a>):
139
140    \image html manage_rte_output.png
141
142 - If the <b>Validation Output</b> requires other components to be present, try to use the \b Resolve button.
143 - Click \b OK. In the \b Project window, you will see the files that have been automatically added to you project, such as
144   \b %RTX_Config.h, \b %RTX_Config.c, the library or the source code files, as well as the system and startup files:
145
146    \image html project_window.png
147
148 - If using the Variant: \b Source as statet above, you have to assure to use at least C99 compiler mode (Project Options -> C/C++ -> C99 Mode).   
149 - You can add template files to the project by right-clicking on <b>Source Group 1</b> and selecting
150   <b>Add New Item to 'Source Group 1'</b>. In the new window, click on <b>User Code Template</b>. On the right-hand side
151   you will see all available template files for CMSIS-RTOS RTX:
152   
153    \image html add_item.png
154
155 - \ref config_rtx5 "Configure" RTX5 to the application's needs using the \b %RTX_Config.h file.
156
157 \endif
158
159 \if ARMCA \section cre_rtx_cortexa Additional requirements for RTX on Cortex-A
160
161 Cortex-A based microcontrollers are less unified with respect to the interrupt and timer implementations used compared to 
162 M-class devices. Thus RTX requires additional components when an A-class device is used, namely
163 <a href="../../Core_A/html/group__irq__ctrl__gr.html"><b>IRQ Controller (API)</b></a> and \ref CMSIS_RTOS_TickAPI "OS Tick (API)"
164 implementations. 
165
166 \image html manage_rte_cortex-a.png
167
168 The default implementations provided along with CMSIS are 
169 - Arm <a href="../../Core_A/html/group__GIC__functions.html">Generic Interrupt Controller (GIC)</a>
170 - Arm Cortex-A5, Cortex-A9 <a href="../../Core_A/html/group__PTM__timer__functions.html">Private Timer (PTIM)</a>
171 - Arm Cortex-A7 <a href="../../Core_A/html/group__PL1__timer__functions.html">Generic Physical Timer (GTIM)</a>
172
173 For devices not implementing GIC, PTIM nor GTIM please refer to the according device family pack and select the
174 proper implementations.
175
176 \endif
177
178 \section cre_UsingIRQs Using Interrupts on Cortex-M
179
180 On Cortex-M processors, the RTX5 kernel uses the following interrupt exceptions.  The table below also lists the 
181 priorities that must be assigned to these interrupts.
182
183 Handler | Priority | Interrupt/Exception
184 :-------|:---------|:----------------------------
185 SysTick | lowest   | Kernel system timer interrupt to generate periodic timer ticks
186 PendSV  | lowest   | PendSV (request for system-level service) when calling certain RTX functions from \b Handler mode
187 SVC     | lowest+1 | Supervisor Call used to enter the RTOS kernel from \b Thread mode
188
189 Other device interrupts can be used without limitation. For Arm Cortex-M3/M4/M7 \if ARMv8M /M23/M33/M35P \endif  processors, interrupts are never disabled by RTX Kernel.
190
191 <b>Usage of interrupt priority grouping</b>
192 - The interrupt priority grouping should be configured using the CMSIS-Core function NVIC_SetPriorityGrouping before calling the function 
193   \ref osKernelStart(). The RTX kernel uses the priority group value to setup the priority for SysTick and PendSV interrupts.
194 - The RTX kernel sets the priority for the interrupts/exceptions listed in above table and uses the lowest two priority levels.
195 - Do not change the priority used by the RTX kernel. If this cannot be avoided, ensure that the preempt priority of
196   SysTick/PendSV is lower than SVC.
197 - Permitted priority group values are 0 to 6. The priority group value 7 will cause RTX to fail as there is only one priority level available.
198 - The <b>main stack</b> is used to run the RTX functionality. It is therefore required to configure sufficient stack for the RTX kernel execution.
199
200 <b>Code Example</b>
201 \code
202 osKernelInitialize();                            // initialize RTX
203 NVIC_SetPriorityGrouping (3);                    // setup priority grouping
204 tread_id = osThreadNew(tread_func, NULL, NULL);  // create some threads
205 osKernelStart ();                                // start RTX kernel
206 \endcode
207
208 \section cre_rtx_proj_specifics Add support for RTX specific functions
209 If you require some of the \ref rtx5_specific "RTX specific functions" in your application code, \#include the
210 \ref rtx_os_h "header file rtx_os.h". This enables \ref lowPower "low-power" and \ref TickLess "tick-less" operation modes.
211
212 \section cre_rtx_proj_er Add Event Recorder Visibility
213
214 RTX5 interfaces to the <a href="http://www.keil.com/pack/doc/compiler/EventRecorder/html/index.html" target="_blank"><b>Event Recorder</b></a> 
215 to provide event information which helps you to understand and analyze the operation.
216
217 - To use the Event Recorder together with RTX5, select the software component <b>Compiler:Event Recorder</b>.
218 - Select the \b Source variant of the software component <b>CMSIS:RTOS2 (API):Keil RTX5</b>.
219   \image html event_recorder_rte.png "Component selection for Event Recorder"
220 - Enable the related settings under \ref evtrecConfig.
221 - Build the application code and download it to the debug hardware.
222   
223 Once the target application generates event information, it can be viewed in the µVision debugger using the \b Event \b Recorder.
224 */
225
226
227 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
228 /**
229 \page theory_of_operation Theory of Operation
230
231 Many aspects of the kernel are configurable and the configuration options are mentioned where applicable.
232
233 \section SystemStartup System Startup
234
235 Since main is no longer a thread RTX5 does not interfere with the system startup until main is reached.
236 Once the execution reaches \c main() there is a recommended order to initialize the hardware and start the kernel. This is
237 also reflected in the user code template file "CMSIS-RTOS2 'main' function" supplied with the RTX5 component.
238
239 Your application's \c main() should implement at least the following in the given order:
240 -# Initialization and configuration of hardware including peripherals, memory, pins, clocks and the interrupt system.
241 -# Update the system core clock using the respective
242    <a href=../../Core/html/group__system__init__gr.html>CMSIS-Core (Cortex-M)</a>  \if ARMCA or <a href=../../Core_A/html/group__system__init__gr.html>CMSIS-Core (Cortex-A)</a> \endif function.
243 -# Initialize the CMSIS-RTOS kernel using \ref osKernelInitialize.
244 -# Optionally, create one thread (for example \c app_main), which is used as a main thread using \ref osThreadNew. This
245    thread should take care of creating and starting objects, once it is run by the scheduler. Alternatively, threads can be
246    created in \c main() directly.
247 -# Start the RTOS scheduler using \ref osKernelStart which also configures the system tick timer and initializes RTOS
248    specific interrupts. This function does not return in case of successful execution. Therefore, any application code after
249    \b osKernelStart will not be executed.
250
251 \note
252 - Modifying priorities and groupings in the NVIC by the application after the above sequence is not recommended.
253 - Before executing \ref osKernelStart, only the functions \ref osKernelGetInfo, \ref osKernelGetState, and object creation
254   functions (osXxxNew) may be called.
255
256
257 \section Scheduler 
258
259 RTX5 implements a low-latency preemptive scheduler. Major parts of RTX5 are executed in handler mode such as
260   - \ref SysTick_Handler used for time-based scheduling.
261   - \ref SVC_Handler used for lock-based scheduling.
262   - \ref PendSV_Handler used for interrupt-based scheduling.
263
264 In order to be low-latency with respect to ISR execution those system exceptions are configured to use the
265 lowest priority groups available. The priorities are configured such that no preemption happens between them. Thus
266 no interrupt critical sections (i.e. interrupt locks) are needed to protect the scheduler.
267
268 \image html scheduling.png "Thread scheduling and interrupt execution"
269
270 The scheduler combines priority and round-robin based context switches. The example depicted in the image above contains
271 four threads (1, 2, 3, and 4). Threads 1 and 2 share the same priority, thread 3 has a higher one and thread 4 the highest
272 (\ref osThreadAttr_t::priority). As long as threads 3 and 4 are blocked the scheduler switches between thread 1 and 2 on
273 a time-slice basis (round-robin). The time-slice for round-robin scheduling can be configured, see Round-Robin Timeout in \ref systemConfig.
274
275 Thread 2 unblocks thread 3 by an arbitrary RTOS-call (executed in SVC handler mode) at time index 2. The scheduler switches to
276 thread 3 immediately because thread 3 has the highest priority. Thread 4 is still blocked.
277
278 At time index 4 an interrupt (ISR) occurs and preempts the SysTick_Handler. RTX does not add any latency to the interrupt
279 service execution. The ISR routine uses an RTOS-call that unblocks thread 4. Instead of switching to thread 4 immediately
280 the PendSV flag is set to defer the context switching. The PendSV_Handler is executed right after the SysTick_Handler returns
281 and the deferred context switch to thread 4 is carried out. As soon as highest priority thread 4 blocks again by using
282 a blocking RTOS-call execution is switched back to thread 3 immediately during time index 5.
283
284 At time index 5 thread 3 uses a blocking RTOS-call as well. Thus the scheduler switches back to thread 2 for time index 6.
285 At time index 7 the scheduler uses the round-robin mechanism to switch to thread 1 and so on.
286
287 \section MemoryAllocation Memory Allocation 
288
289 RTX5 objects (thread, mutex, semaphore, timer, message queue, thread and event flags, as well as memory pool) require
290 dedicated RAM memory. Objects can be created using os<i>Object</i>New() calls and deleted using os<i>Object</i>Delete()
291 calls. The related object memory needs to be available during the lifetime of the object.
292
293 RTX5 offers three different memory allocation methods for objects:
294   - \ref GlobalMemoryPool uses a single global memory pool for all objects. It is easy to configure, but may have 
295     the disadvantage for memory fragmentation when objects with different sizes are created and destroyed.
296   - \ref ObjectMemoryPool uses a fixed-size memory pool for each object type. The method is time deterministic
297      and avoids memory fragmentation.
298   - \ref StaticObjectMemory reserves memory during compile time and completely avoids that a system can be out of memory.
299     This is typically a required for some safety critical systems.
300
301 It possible to intermix all the memory allocation methods in the same application.
302
303 \subsection GlobalMemoryPool Global Memory Pool
304
305 The global memory pool allocates all objects from a memory area. This method of memory allocation is the default
306 configuration setting of RTX5.
307
308 \image html MemAllocGlob.png "Global Memory Pool for all objects"
309
310 When the memory pool does not provide sufficient memory, the creation of the object fails and the related
311 os<i>Object</i>New() function returns \token{NULL}.
312
313 Enabled in \ref systemConfig.
314
315 \subsection ObjectMemoryPool Object-specific Memory Pools
316
317 Object-specific memory pools avoids memory fragmentation with a dedicated fixed-size memory management for each object type.
318 This type of memory pools are fully time deterministic, which means that object creation and destruction takes always the
319 same fixed amount of time. As a fixed-size memory pool is specific to an object type, the handling of out-of-memory
320 situations is simplified.
321
322 \image html MemAllocSpec.png "One memory pool per object type"
323
324 Object-specific memory pools are selectively enabled for each object type, e.g: mutex or thread using the RTX configuration
325 file:
326  - Enabled in \ref threadConfig for thread objects.
327  - Enabled in \ref timerConfig for timer objects.
328  - Enabled in \ref eventFlagsConfig for event objects.
329  - Enabled in \ref mutexConfig for mutex objects.
330  - Enabled in \ref semaphoreConfig for semaphore.
331  - Enabled in \ref memPoolConfig for memory pools.
332  - Enabled in \ref msgQueueConfig for message objects.
333
334 When the memory pool does not provide sufficient memory, the creation of the object fails and the related
335 os<i>Object</i>New() function returns \token{NULL}.
336
337 \subsection StaticObjectMemory Static Object Memory
338 In contrast to the dynamic memory allocations, the static memory allocation requires compile-time allocation of object memory. 
339
340 \image html MemAllocStat.png "Statically allocated memory for all objects"
341
342 Static memory allocation can be achieved by providing user-defined memory using attributes at object creation,
343 see \ref CMSIS_RTOS_MemoryMgmt_Manual. Please take special note of the following restrictions:
344
345 Memory type                                  | Requirements
346 ---------------------------------------------|-------------------------------------------------------------------------------
347 Control Block (osXxxAttr_t::cb_mem)          | 4-Byte alignment. Size defined by \ref osRtxThreadCbSize, \ref osRtxTimerCbSize, \ref osRtxEventFlagsCbSize, \ref osRtxMutexCbSize, \ref osRtxSemaphoreCbSize, \ref osRtxMemoryPoolCbSize, \ref osRtxMessageQueueCbSize.
348 Thread Stack (osThreadAttr_t::stack_mem)     | 8-Byte alignment. Size is application specific, i.e. amount of stack variables and frames.
349 Memory Pool (osMemoryPoolAttr_t::mp_mem)     | 4-Byte alignment. Size calculated with \ref osRtxMemoryPoolMemSize.
350 Message Queue (osMessageQueueAttr_t::mq_mem) | 4-Byte alignment. Size calculated with \ref osRtxMessageQueueMemSize.
351
352
353 In order to allow RTX5 aware debugging, i.e. Component Viewer, to recognize control blocks these
354 needs to be placed in individual memory sections, i.e. using `__attribute__((section(...)))`.
355
356 RTX Object    | Linker Section 
357 --------------|------------------------
358 Thread        | `.bss.os.thread.cb`
359 Timer         | `.bss.os.timer.cb`
360 Event Flags   | `.bss.os.evflags.cb`
361 Mutex         | `.bss.os.mutex.cb`
362 Semaphore     | `.bss.os.semaphore.cb`
363 Memory Pool   | `.bss.os.mempool.cb`
364 Message Queue | `.bss.os.msgqueue.cb`
365
366 The following code example shows how to create an OS object using static memory.
367
368 <b> Code Example:</b> 
369 \code{.c}
370 /*----------------------------------------------------------------------------
371  * CMSIS-RTOS 'main' function template
372  *---------------------------------------------------------------------------*/
373
374 #include "RTE_Components.h"
375 #include  CMSIS_device_header
376 #include "cmsis_os2.h"
377  
378 //include rtx_os.h for types of RTX objects
379 #include "rtx_os.h"
380  
381 //The thread function instanced in this example
382 void worker(void *arg)
383 {
384   while(1) 
385   {
386     //work
387     osDelay(10000);
388   }  
389 }
390  
391 // Define objects that are statically allocated for worker thread 1
392 __attribute__((section(".bss.os.thread.cb")))
393 osRtxThread_t worker_thread_tcb_1;
394  
395 // Reserve two areas for the stacks of worker thread 1
396 // uint64_t makes sure the memory alignment is 8
397 uint64_t worker_thread_stk_1[64];
398  
399 // Define the attributes which are used for thread creation
400 // Optional const saves RAM memory and includes the values in periodic ROM tests 
401 const osThreadAttr_t worker_attr_1 = {
402   "wrk1",
403   osThreadJoinable,
404   &worker_thread_tcb_1,
405   sizeof(worker_thread_tcb_1),
406   &worker_thread_stk_1[0],
407   sizeof(worker_thread_stk_1),
408   osPriorityAboveNormal,
409   0
410 };
411  
412 // Define ID object for thread
413 osThreadId_t th1;
414  
415 /*----------------------------------------------------------------------------
416  * Application main thread
417  *---------------------------------------------------------------------------*/
418 void app_main (void *argument) {
419   uint32_t param = NULL;
420  
421   // Create an instance of the worker thread with static resources (TCB and stack)
422   th1 = osThreadNew(worker, &param, &worker_attr_1);
423  
424   for (;;) {}
425 }
426  
427 int main (void) {
428   // System Initialization
429   SystemCoreClockUpdate();
430   // ...
431
432   osKernelInitialize();                 // Initialize CMSIS-RTOS
433   osThreadNew(app_main, NULL, NULL);    // Create application main thread
434   osKernelStart();                      // Start thread execution
435   for (;;) {}
436 }
437 \endcode
438
439
440 \section ThreadStack Thread Stack Management
441
442 For Cortex-M processors without floating point unit the thread context requires 64 bytes on the local stack.
443
444 \note For Cortex-M4/M7 with FP the thread context requires 200 bytes on the local stack. For these devices the default stack
445 space should be increased to a minimum of 300 bytes.
446
447 Each thread is provided with a separate stack that holds the thread context and stack space for automatic variables and
448 return addresses for function call nesting. The stack sizes of RTX threads are flexibly configurable as explained in the
449 section \ref threadConfig. RTX offers a configurable checking for stack overflows and stack utilization. 
450
451
452 \section lowPower Low-Power Operation
453
454 The system thread \b osRtxIdleThread can be use to switch the system into a low-power mode. The easiest form to enter a
455 low-power mode is the execution of the \c __WFE function that puts the processor into a sleep mode where it waits for an
456 event.
457
458 <b>Code Example:</b>
459 \code
460 #include "RTE_Components.h"
461 #include CMSIS_device_header            /* Device definitions                 */
462  
463 void osRtxIdleThread (void) {
464   /* The idle demon is a system thread, running when no other thread is       */
465   /* ready to run.                                                            */
466  
467   for (;;) {
468     __WFE();                            /* Enter sleep mode                   */
469   }
470 }
471 \endcode
472
473 \note
474 \c __WFE() is not available in every Cortex-M implementation. Check device manuals for availability.
475
476
477 \section kernelTimer RTX Kernel Timer Tick
478
479 RTX uses the generic \ref CMSIS_RTOS_TickAPI to configure and control its periodic Kernel Tick.
480
481 To use an alternative timer as the Kernel Tick Timer one simply needs to implement a custom version
482 of the \ref CMSIS_RTOS_TickAPI.
483
484 \note The OS Tick implementation provided must asure that the used timer interrupt uses the same (low) priority group 
485 as the service interrupts, i.e. interrupts used by RTX must not preempt each other. Refer to the \ref Scheduler section
486 for more details.
487
488 \subsection TickLess Tick-less Low-Power Operation
489
490 RTX5 provides extension for tick-less operation which is useful for applications that use extensively low-power modes where
491 the SysTick timer is also disabled. To provide a time-tick in such power-saving modes, a wake-up timer is used to
492 derive timer intervals. The CMSIS-RTOS2 functions \ref osKernelSuspend and \ref osKernelResume control the tick-less
493 operation.
494
495 Using this functions allows the RTX5 thread scheduler to stop the periodic kernel tick interrupt. When all active threads
496 are suspended, the system enters power-down and calculates how long it can stay in this power-down mode. In the power-down
497 mode the processor and peripherals can be switched off. Only a wake-up timer must remain powered, because this timer is
498 responsible to wake-up the system after the power-down period expires.
499
500 The tick-less operation is controlled from the \b osRtxIdleThread thread. The wake-up timeout value is set before the system
501 enters the power-down mode. The function \ref osKernelSuspend calculates the wake-up timeout measured in RTX Timer Ticks;
502 this value is used to setup the wake-up timer that runs during the power-down mode of the system.
503
504 Once the system resumes operation (either by a wake-up time out or other interrupts) the RTX5 thread scheduler is started
505 with the function \ref osKernelResume. The parameter \a sleep_time specifies the time (in RTX Timer Ticks) that the system
506 was in power-down mode.
507
508 <b>Code Example:</b>
509 \code
510 #include "msp.h"                        // Device header
511
512 /*----------------------------------------------------------------------------
513  *      MSP432 Low-Power Extension Functions
514  *---------------------------------------------------------------------------*/
515 static void MSP432_LP_Entry(void) {
516   /* Enable PCM rude mode, which allows to device to enter LPM3 without waiting for peripherals */
517   PCM->CTL1 = PCM_CTL1_KEY_VAL | PCM_CTL1_FORCE_LPM_ENTRY;       
518   /* Enable all SRAM bank retentions prior to going to LPM3  */
519   SYSCTL->SRAM_BANKRET |= SYSCTL_SRAM_BANKRET_BNK7_RET;
520   __enable_interrupt();
521   NVIC_EnableIRQ(RTC_C_IRQn);
522   /* Do not wake up on exit from ISR */
523   SCB->SCR |= SCB_SCR_SLEEPONEXIT_Msk;
524   /* Setting the sleep deep bit */
525   SCB->SCR |= (SCB_SCR_SLEEPDEEP_Msk);  
526 }
527  
528 static volatile unsigned int tc;
529 static volatile unsigned int tc_wakeup;
530  
531 void RTC_C_IRQHandler(void)
532 {
533   if (tc++ > tc_wakeup) 
534   {
535     SCB->SCR &= ~SCB_SCR_SLEEPONEXIT_Msk;    
536     NVIC_DisableIRQ(RTC_C_IRQn);
537     NVIC_ClearPendingIRQ(RTC_C_IRQn);
538     return;
539   }
540   if (RTC_C->PS0CTL & RTC_C_PS0CTL_RT0PSIFG)
541   {
542     RTC_C->CTL0 = RTC_C_KEY_VAL;                 // Unlock RTC key protected registers
543     RTC_C->PS0CTL &= ~RTC_C_PS0CTL_RT0PSIFG;
544     RTC_C->CTL0 = 0;
545     SCB->SCR |= (SCB_SCR_SLEEPDEEP_Msk);
546   }
547 }
548  
549 uint32_t g_enable_sleep = 0;
550   
551 void osRtxIdleThread (void) {
552   
553   for (;;) {
554     tc_wakeup = osKernelSuspend();
555     /* Is there some time to sleep? */
556     if (tc_wakeup > 0) {
557       tc = 0;
558       /* Enter the low power state */
559       MSP432_LP_Entry();
560       __WFE();
561     }
562     /* Adjust the kernel ticks with the amount of ticks slept */
563     osKernelResume (tc);
564   }
565 }
566 \endcode
567
568 \note
569 \c __WFE() is not available in every Arm Cortex-M implementation. Check device manuals for availability. 
570 The alternative using \c __WFI() has other issues, please take note of http://www.keil.com/support/docs/3591.htm as well.
571
572 \section rtx_os_h RTX5 Header File
573
574 Every implementation of the CMSIS-RTOS2 API can bring its own additional features. RTX5 adds a couple of
575 \ref rtx5_specific "functions" for the idle more, for error notifications, and special system timer functions. It also is
576 using macros for control block and memory sizes.
577
578 If you require some of the RTX specific functions in your application code, \#include the header file \b %rtx_os.h:
579
580 \include rtx_os.h
581
582
583 \section CMSIS_RTOS_TimeOutValue Timeout Value   
584
585 Timeout values are an argument to several \b osXxx functions to allow time for resolving a request. A timeout value of \b 0
586 means that the RTOS does not wait and the function returns instantly, even when no resource is available. A timeout value of
587 \ref osWaitForever means that the RTOS waits infinitely until a resource becomes available. Or one forces the thread to resume
588 using \ref osThreadResume which is discouraged.
589  
590 The timeout value specifies the number of timer ticks until the time delay elapses. The value is an upper bound and 
591 depends on the actual time elapsed since the last timer tick. 
592
593 Examples:
594   - timeout value \b 0 : the system does not wait, even when no resource is available the RTOS function returns instantly. 
595   - timeout value \b 1 : the system waits until the next timer tick occurs; depending on the previous timer tick, it may be a
596     very short wait time.
597   - timeout value \b 2 : actual wait time is between 1 and 2 timer ticks.
598   - timeout value \ref osWaitForever : system waits infinite until a resource becomes available. 
599   
600 \image html TimerValues.png "Example of timeout using osDelay()"
601
602
603 \section CMSIS_RTOS_ISR_Calls Calls from Interrupt Service Routines 
604
605 The following CMSIS-RTOS2 functions can be called from threads and Interrupt Service Routines (ISR):
606   - \ref osKernelGetInfo, \ref osKernelGetState,
607     \ref osKernelGetTickCount, \ref osKernelGetTickFreq, \ref osKernelGetSysTimerCount, \ref osKernelGetSysTimerFreq
608   - \ref osThreadGetId, \ref osThreadFlagsSet
609   - \ref osEventFlagsSet, \ref osEventFlagsClear, \ref osEventFlagsGet, \ref osEventFlagsWait
610   - \ref osSemaphoreAcquire, \ref osSemaphoreRelease, \ref osSemaphoreGetCount
611   - \ref osMemoryPoolAlloc, \ref osMemoryPoolFree, \ref osMemoryPoolGetCapacity, \ref osMemoryPoolGetBlockSize,
612     \ref osMemoryPoolGetCount, \ref osMemoryPoolGetSpace
613   - \ref osMessageQueuePut, \ref osMessageQueueGet, \ref osMessageQueueGetCapacity, \ref osMessageQueueGetMsgSize,
614     \ref osMessageQueueGetCount, \ref osMessageQueueGetSpace
615
616 Functions that cannot be called from an ISR are verifying the interrupt status and return the status code \b osErrorISR, in
617 case they are called from an ISR context. In some implementations, this condition might be caught using the HARD_FAULT
618 vector.
619 */
620
621 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
622 /**
623 \page config_rtx5 Configure RTX v5
624
625 The file "RTX_Config.h" defines the configuration parameters of CMSIS-RTOS RTX and must be part of every project that is
626 using the CMSIS-RTOS RTX kernel. The configuration options are explained in detail in the following sections:
627 - \ref systemConfig covers system-wide settings for the global memory pool, tick frequency, ISR event buffer and round-robin thread switching.
628 - \ref threadConfig provides several parameters to configure the \ref CMSIS_RTOS_ThreadMgmt functions.
629 - \ref timerConfig provides several parameters to configure the \ref CMSIS_RTOS_TimerMgmt functions.
630 - \ref eventFlagsConfig provides several parameters to configure the \ref CMSIS_RTOS_EventFlags functions.
631 - \ref mutexConfig provides several parameters to configure the \ref CMSIS_RTOS_MutexMgmt functions.
632 - \ref semaphoreConfig provides several parameters to configure the \ref CMSIS_RTOS_SemaphoreMgmt functions.
633 - \ref memPoolConfig provides several parameters to configure the \ref CMSIS_RTOS_PoolMgmt functions.
634 - \ref msgQueueConfig provides several parameters to configure the \ref CMSIS_RTOS_Message functions.
635 - \ref evtrecConfig provides several parameters to configure RTX for usage with <a href="http://www.keil.com/pack/doc/compiler/EventRecorder/html/index.html" target="_blank"><b>Event Recorder</b></a>.
636
637 The file "RTX_Config.c" contains default implementations of the functions \ref osRtxIdleThread and \ref osRtxErrorNotify. Both functions
638 can simply be overwritten with a customized behavior by redefining them as part of the user code.
639
640 The configuration file uses <b>Configuration Wizard Annotations</b>. Refer to <b>Pack - Configuration Wizard Annotations</b> for details.
641 Depending on the development tool, the annotations might lead to a more user-friendly graphical representation of the
642 settings. The picture below shows the µVision \b Configuration \b Wizard view in MDK:
643
644 \image html config_wizard.png "RTX_Config.h in Configuration Wizard View"
645
646 Alternatively one can provide configuration options using the compiler command line.
647
648 For example one can customize the used tick frequency to 100us by (overwriting) the configuration using
649 \code
650 cc -DOS_TICK_FREQ=100
651 \endcode
652
653 \section systemConfig System Configuration
654
655 The system configuration covers system-wide settings for the global memory pool, tick frequency, ISR event buffer and
656 round-robin thread switching.
657
658 <b>System Configuration Options</b>
659 \image html config_wizard_system.png "RTX_Config.h: System Configuration"
660
661 Name                                   | \#define                 | Description
662 ---------------------------------------|--------------------------|----------------------------------------------------------------
663 Global Dynamic Memory size [bytes]     | \c OS_DYNAMIC_MEM_SIZE   | Defines the combined global dynamic memory size for the \ref GlobalMemoryPool. Default value is \token{4096}. Value range is \token{[0-1073741824]} bytes, in multiples of \token{8} bytes.
664 Kernel Tick Frequency (Hz)             | \c OS_TICK_FREQ          | Defines base time unit for delays and timeouts in Hz. Default: 1000Hz = 1ms period.
665 Round-Robin Thread switching           | \c OS_ROBIN_ENABLE       | Enables Round-Robin Thread switching.
666 Round-Robin Timeout                    | \c OS_ROBIN_TIMEOUT      | Defines how long a thread will execute before a thread switch. Default value is \token{5}. Value range is \token{[1-1000]}.
667 ISR FIFO Queue                         | \c OS_ISR_FIFO_QUEUE     | RTOS Functions called from ISR store requests to this buffer. Default value is \token{16 entries}. Value range is \token{[4-256]} entries in multiples of \token{4}.
668 Object Memory usage counters           | \c OS_OBJ_MEM_USAGE      | Enables object memory usage counters to evaluate the maximum memory pool requirements individually for each RTOS object type.
669
670 \subsection systemConfig_glob_mem Global dynamic memory
671 Refer to \ref GlobalMemoryPool.
672
673
674 \subsection systemConfig_rr Round-Robin Thread Switching
675
676 RTX5 may be configured to use round-robin multitasking thread switching. Round-robin allows quasi-parallel execution of
677 several threads of the \a same priority. Threads are not really executed concurrently, but are scheduled where the available
678 CPU time is divided into time slices and RTX5 assigns a time slice to each thread. Because the time slice is typically short
679 (only a few milliseconds), it appears as though threads execute simultaneously.
680
681 Round-robin thread switching functions as follows:
682 - the tick is preloaded with the timeout value when a thread switch occurs
683 - the tick is decremented (if not already zero) each system tick if the same thread is still executing
684 - when the tick reaches 0 it indicates that a timeout has occurred. If there is another thread ready with the \a same
685   priority, then the system switches to that thread and the tick is preloaded with timeout again.
686
687 In other words, threads execute for the duration of their time slice (unless a thread's time slice is given up). Then, RTX
688 switches to the next thread that is in \b READY state and has the same priority. If no other thread with the same priority is
689 ready to run, the current running thread resumes it execution.
690
691 \note When switching to higher priority threads, the round-robin timeout value is reset.
692
693 Round-Robin multitasking is controlled with the <b>\#define OS_ROBIN_ENABLE</b>. The time slice period is configured (in RTX
694 timer ticks) with the <b>\#define OS_ROBIN_TIMEOUT</b>.
695
696
697 \subsection systemConfig_isr_fifo ISR FIFO Queue
698 The RTX functions (\ref CMSIS_RTOS_ISR_Calls), when called from and interrupt handler, store the request type and optional
699 parameter to the ISR FIFO queue buffer to be processed later, after the interrupt handler exits.
700
701 The scheduler is activated immediately after the IRQ handler has finished its execution to process the requests stored to the
702 FIFO queue buffer. The required size of this buffer depends on the number of functions that are called within the interrupt
703 handler. An insufficient queue size will be caught by \b osRtxErrorNotify with error code \b osRtxErrorISRQueueOverflow.
704
705
706 \subsection systemConfig_usage_counters Object Memory Usage Counters
707
708 Object memory usage counters help to evaluate the maximum memory pool requirements for each object type, just like stack
709 watermarking does for threads. The initial setup starts with a global memory pool for all object types. Consecutive runs of
710 the application with object memory usage counters enabled, help to introduce object specific memory pools for each object
711 type. Normally, this is required for applications that require a functional safety certification as global memory pools are
712 not allowed in this case.
713
714
715 \section threadConfig Thread Configuration
716
717 The RTX5 provides several parameters to configure the \ref CMSIS_RTOS_ThreadMgmt functions.
718
719 <b>Thread Configuration Options</b>
720 \image html config_wizard_threads.png "RTX_Config.h: Thread Configuration"
721
722 <br> 
723 Option                                                   | \#define               | Description
724 :--------------------------------------------------------------------------|:-------------------------------|:---------------------------------------------------------------
725 Object specific Memory allocation                        | \c OS_THREAD_OBJ_MEM   | Enables object specific memory allocation. See \ref ObjectMemoryPool.
726 Number of user Threads                                   | \c OS_THREAD_NUM       | Defines maximum number of user threads that can be active at the same time. Applies to user threads with system provided memory for control blocks. Default value is \token{1}. Value range is \token{[1-1000]}.
727 Number of user Threads with default Stack size  | \c OS_THREAD_DEF_STACK_NUM     | Defines maximum number of user threads with default stack size and applies to user threads with \token{0} stack size specified. Value range is \token{[0-1000]}.
728 Total Stack size [bytes] for user Threads with user-provided Stack size    | \c OS_THREAD_USER_STACK_SIZE | Defines the combined stack size for user threads with user-provided stack size. Default value is \token{0}. Value range is \token{[0-1073741824]} Bytes, in multiples of \token{8}. 
729 Default Thread Stack size [bytes]                        | \c OS_STACK_SIZE    | Defines stack size for threads with zero stack size specified. Default value is \token{200}. Value range is \token{[96-1073741824]} Bytes, in multiples of \token{8}. 
730 Idle Thread Stack size [bytes]                           | \c OS_IDLE_THREAD_STACK_SIZE              | Defines stack size for Idle thread. Default value is \token{200}. Value range is \token{[72-1073741824]} bytes, in multiples of \token{8}. 
731 Idle Thread TrustZone Module ID                                            | \c OS_IDLE_THREAD_TZ_MOD_ID    | Defines the \ref osThreadAttr_t::tz_module "TrustZone Module ID" the Idle Thread shall use. This needs to be set to a non-zero value if the Idle Thread need to call secure functions. Default value is \token{0}.
732 Stack overrun checking                                   | \c OS_STACK_CHECK   | Enable stack overrun checks at thread switch. 
733 Stack usage watermark                                    | \c OS_STACK_WATERMARK    | Initialize thread stack with watermark pattern for analyzing stack usage. Enabling this option increases significantly the execution time of thread creation.
734 Processor mode for Thread execution                      | \c OS_PRIVILEGE_MODE     | Controls the processor mode. Default value is \token{Privileged} mode. Value range is \token{[0=Unprivileged; 1=Privileged]} mode.
735
736 \subsection threadConfig_countstack Configuration of Thread Count and Stack Space
737
738 The RTX5 kernel uses a separate stack space for each thread and provides two methods for defining the stack requirements:
739  - <b>Static allocation</b>: when \ref osThreadAttr_t::stack_mem and \ref osThreadAttr_t::stack_size specify a memory area
740    which is used for the thread stack. \b Attention: The stack memory provided must be 64-bit aligned, i.e. by using uint64_t for declaration.
741  - <b>Dynamic allocation</b>: when \ref osThreadAttr_t is NULL or \ref osThreadAttr_t::stack_mem is NULL, the system
742    allocates the stack memory from:
743      - Object-specific Memory Pool (default Stack size) when "Object specific Memory allocation" is enabled and "Number of
744        user Threads with default Stack size" is not \token{0} and \ref osThreadAttr_t::stack_size is \token{0} (or
745        \ref osThreadAttr_t is NULL).
746      - Object-specific Memory Pool (user-provided Stack size) when "Object specific Memory allocation" is enabled and "Total
747        Stack size for user..."  is not \token{0} and \ref osThreadAttr_t::stack_size is not \token{0}.
748      - Global Memory Pool when "Object specific Memory allocation" is disabled or (\ref osThreadAttr_t::stack_size is not
749        \token{0} and "Total Stack size for user..." is \token{0}) or (\ref osThreadAttr_t::stack_size is \token{0} and
750        "Number of user Threads with default Stack size" is \token{0}).
751
752 \ref osThreadAttr_t is a parameter of the function \ref osThreadNew.
753
754 \note
755 Before the RTX kernel is started by the \ref osKernelStart() function, the main stack defined in startup_<i>device</i>.s is
756 used. The main stack is also used for:
757  - user application calls to RTX functions in \b thread \b mode using SVC calls
758  - interrupt/exception handlers.
759  
760 \subsection threadConfig_ovfcheck Stack Overflow Checking
761 RTX5 implements a software stack overflow checking that traps stack overruns. Stack is used for return addresses and
762 automatic variables. Extensive usage or incorrect stack configuration may cause a stack overflow. Software stack overflow
763 checking is controlled with the define \c OS_STACK_CHECK.
764  
765 If a stack overflow is detected, the function \ref osRtxErrorNotify with error code \ref osRtxErrorStackUnderflow is called. By
766 default, this function is implemented as an endless loop and will practically stop code execution.
767
768 \subsection threadConfig_watermark Stack Usage Watermark
769 RTX5 initializes thread stack with a watermark pattern (0xCC) when a thread is created. This allows the debugger to determine
770 the maximum stack usage for each thread. It is typically used during development but removed from the final application.
771 Stack usage watermark is controlled with the define \c OS_STACK_WATERMARK.
772   
773 Enabling this option significantly increases the execution time of \ref osThreadNew (depends on thread stack size).
774  
775 \subsection threadConfig_procmode Processor Mode for Thread Execution
776 RTX5 allows to execute threads in unprivileged or privileged processor mode. The processor mode is controlled with the
777 define \c OS_PRIVILEGE_MODE.
778  
779 In \b unprivileged processor mode, the application software:
780 - has limited access to the MSR and MRS instructions, and cannot use the CPS instruction.
781 - cannot access the system timer, NVIC, or system control block.
782 - might have restricted access to memory or peripherals.
783
784 In \b privileged processor mode, the application software can use all the instructions and has access to all resources.
785
786
787 \section timerConfig Timer Configuration
788
789 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_TimerMgmt functions.
790
791 <b>Timer Configuration Options</b>
792 \image html config_wizard_timer.png "RTX_Config.h: Timer Configuration"
793
794 Name                                   | \#define                 | Description
795 ---------------------------------------|--------------------------------|----------------------------------------------------------------
796 Object specific Memory allocation      | \c OS_TIMER_OBJ_MEM      | Enables object specific memory allocation. 
797 Number of Timer objects                | \c OS_TIMER_NUM          | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
798 Timer Thread Priority                  | \c OS_TIMER_THREAD_PRIO        | Defines priority for timer thread. Default value is \token{40}. Value range is \token{[8-48]}, in multiples of \token{8}. The numbers have the following priority correlation: \token{8=Low}; \token{16=Below Normal}; \token{24=Normal}; \token{32=Above Normal}; \token{40=High}; \token{48=Realtime} 
799 Timer Thread Stack size [bytes]        | \c OS_TIMER_THREAD_STACK_SIZE  | Defines stack size for Timer thread. May be set to 0 when timers are not used. Default value is \token{200}. Value range is \token{[0-1073741824]}, in multiples of \token{8}.
800 Timer Thread TrustZone Module ID       | \c OS_TIMER_THREAD_TZ_MOD_ID   | Defines the \ref osThreadAttr_t::tz_module "TrustZone Module ID" the Timer Thread shall use. This needs to be set to a non-zero value if any Timer Callbacks need to call secure functions. Default value is \token{0}.
801 Timer Callback Queue entries           | \c OS_TIMER_CB_QUEUE           | Number of concurrent active timer callback functions. May be set to 0 when timers are not used. Default value is \token{4}. Value range is \token{[0-256]}.
802
803 \subsection timerConfig_obj Object-specific memory allocation
804 See \ref ObjectMemoryPool.
805
806 \subsection timerConfig_user User Timer Thread
807 The RTX5 function \b osRtxTimerThread executes callback functions when a time period expires. The priority of the timer
808 subsystem within the complete RTOS system is inherited from the priority of the \b osRtxTimerThread. This is configured by
809 \c OS_TIMER_THREAD_PRIO. Stack for callback functions is supplied by \b osRtxTimerThread. \c OS_TIMER_THREAD_STACK_SIZE must
810 satisfy the stack requirements of the callback function with the highest stack usage. 
811
812
813 \section eventFlagsConfig Event Flags Configuration
814
815 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_EventFlags functions.
816
817 <b>Event Configuration Options</b>
818 \image html config_wizard_eventFlags.png "RTX_Config.h: Event Flags Configuration"
819
820 Name                                   | \#define                 | Description
821 ---------------------------------------|--------------------------|----------------------------------------------------------------
822 Object specific Memory allocation      | \c OS_EVFLAGS_OBJ_MEM    | Enables object specific memory allocation. See \ref ObjectMemoryPool.
823 Number of Event Flags objects          | \c OS_EVFLAGS_NUM        | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
824
825 \subsection eventFlagsConfig_obj Object-specific memory allocation
826 When object-specific memory is used, the pool size for all Event objects is specified by \c OS_EVFLAGS_NUM. Refer to
827 \ref ObjectMemoryPool.
828
829
830 \section mutexConfig Mutex Configuration
831 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_MutexMgmt functions.
832
833 <b>Mutex Configuration Options</b>
834 \image html config_wizard_mutex.png "RTX_Config.h: Mutex Configuration"
835
836
837 Name                                   | \#define                 | Description
838 ---------------------------------------|--------------------------|----------------------------------------------------------------
839 Object specific Memory allocation      | \c OS_MUTEX_OBJ_MEM      | Enables object specific memory allocation. See \ref ObjectMemoryPool.
840 Number of Mutex objects                | \c OS_MUTEX_NUM          | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
841
842 \subsection mutexConfig_obj Object-specific Memory Allocation
843 When object-specific memory is used, the pool size for all Mutex objects is specified by \c OS_MUTEX_NUM. Refer to
844 \ref ObjectMemoryPool.
845
846
847 \section semaphoreConfig Semaphore Configuration
848
849 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_SemaphoreMgmt functions.
850
851 <b>Semaphore Configuration Options</b>
852 \image html config_wizard_semaphore.png "RTX_Config.h: Semaphore Configuration"
853
854
855 Name                                   | \#define                 | Description
856 ---------------------------------------|--------------------------|----------------------------------------------------------------
857 Object specific Memory allocation      | \c OS_SEMAPHORE_OBJ_MEM  | Enables object specific memory allocation. See \ref ObjectMemoryPool.
858 Number of Semaphore objects            | \c OS_SEMAPHORE_NUM      | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
859
860 \subsection semaphoreConfig_obj Object-specific memory allocation
861 When Object-specific Memory is used, the pool size for all Semaphore objects is specified by \c OS_SEMAPHORE_NUM. Refer to
862 \ref ObjectMemoryPool.
863
864
865 \section memPoolConfig Memory Pool Configuration
866
867 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_PoolMgmt functions.
868
869 <b>Memory Pool Configuration Options</b>
870 \image html config_wizard_memPool.png "RTX_Config.h: Memory Pool Configuration"
871
872 Name                                   | \#define                 | Description
873 ---------------------------------------|--------------------------|----------------------------------------------------------------
874 Object specific Memory allocation      | \c OS_MEMPOOL_OBJ_MEM    | Enables object specific memory allocation. See \ref ObjectMemoryPool.
875 Number of Memory Pool objects          | \c OS_MEMPOOL_NUM        | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
876 Data Storage Memory size [bytes]       | \c OS_MEMPOOL_DATA_SIZE  | Defines the combined data storage memory size. Applies to objects with system provided memory for data storage. Default value is \token{0}. Value range is \token{[0-1073741824]}, in multiples of \token{8}.
877
878 \subsection memPoolConfig_obj Object-specific memory allocation
879 When object-specific memory is used, the number of pools for all MemoryPool objects is specified by \c OS_MEMPOOL_NUM. The
880 total storage size reserved for all pools is configured in \c OS_MEMPOOL_DATA_SIZE. Refer to \ref ObjectMemoryPool.
881
882
883 \section msgQueueConfig Message Queue Configuration
884
885 RTX5 provides several parameters to configure the \ref CMSIS_RTOS_Message functions.
886
887 <b>MessageQueue Configuration Options</b>
888 \image html config_wizard_msgQueue.png "RTX_Config.h: Message Queue Configuration"
889
890 Name                                   | \#define                 | Description
891 ---------------------------------------|--------------------------|----------------------------------------------------------------
892 Object specific Memory allocation      | \c OS_MSGQUEUE_OBJ_MEM   | Enables object specific memory allocation. See \ref ObjectMemoryPool.
893 Number of Message Queue objects        | \c OS_MSGQUEUE_NUM       | Defines maximum number of objects that can be active at the same time. Applies to objects with system provided memory for control blocks. Value range is \token{[1-1000]}.
894 Data Storage Memory size [bytes]       | \c OS_MSGQUEUE_DATA_SIZE | Defines the combined data storage memory size. Applies to objects with system provided memory for data storage. Default value is \token{0}. Value range is \token{[0-1073741824]}, in multiples of \token{8}.
895
896 \subsection msgQueueConfig_obj Object-specific memory allocation
897 When Object-specific Memory is used, the number of queues for all Message Queue objects is specified by \c OS_MSGQUEUE_NUM.
898 The total storage size reserved for all queues is configured in \c OS_MSGQUEUE_DATA_SIZE. Refer to \ref ObjectMemoryPool.
899
900
901 \section evtrecConfig Event Recorder Configuration
902
903 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>
904 annotations. The usage requires the source variant of RTX5; refer to \ref cre_rtx_proj_er for more information.
905
906 \subsection evtrecConfigGlobIni Global Configuration
907 Initialize Event Recorder during the \ref osKernelInitialize and optionally start event recording.
908
909 \image html config_wizard_evtrecGlobIni.png "RTX_Config.h: Global Configuration"
910
911 <br/>
912
913 Name                  | \#define        | Description
914 ----------------------|-----------------|----------------------------------------------------------------
915 Global Initialization | \c OS_EVR_INIT  | Initialize Event Recorder during \ref osKernelInitialize.
916 Start Recording       | \c OS_EVR_START | Start event recording after initialization.
917
918 \note
919 - If <b>Global Initialization (\c OS_EVR_INIT)</b> is set, an explicit call to \c EventRecorderInitialize is not required.
920 - If <b>Start Recording (\c OS_EVR_START)</b> is set, an explicit call to \c EventRecorderStart is not required. You may call the function \c EventRecorderStop to stop recording.
921
922
923 <b>Global Event Filter Setup</b>
924
925 These event filter settings are applied to all software component numbers, including MDK middleware and user components.
926
927 \image html config_wizard_evtrecGlobEvtFiltSetup.png "RTX_Config.h: Global Event Filter Setup"
928
929 <br/>
930
931 Name                      | \#define         | Description
932 --------------------------|------------------|----------------------------------------------------------------
933 Error events              | \c OS_EVR_LEVEL  | Enable error events.
934 API function call events  | \c OS_EVR_LEVEL  | Enable API function call events.
935 Operation events          | \c OS_EVR_LEVEL  | Enable operation events.
936 Detailed operation events | \c OS_EVR_LEVEL  | Enable detailed operation events.
937
938 \note
939 You may disable event recording for specific software components by calling the function \c EventRecorderDisable.
940
941 <b>RTOS Event Filter Setup</b>
942
943 These event filter settings are applied to specific RTX component groups with sub-options for:
944 - Error events
945 - API function call events
946 - Operation events
947 - Detailed operation events
948
949 The generation of events must be enabled as explained under \ref evtrecConfigEvtGen.
950
951
952 \image html config_wizard_evtrecRTOSEvtFilterSetup.png "RTX_Config.h: RTOS Event Filter Setup"
953
954 <br/>
955
956 Name              | \#define                   | Description
957 ------------------|----------------------------|----------------------------------------------------------------
958 Memory Management | \c OS_EVR_MEMORY_LEVEL     | Recording level for Memory Management events.
959 Kernel            | \c OS_EVR_KERNEL_LEVEL     | Recording level for Kernel events.
960 Thread            | \c OS_EVR_THREAD_LEVEL     | Recording level for Thread events.
961 Generic Wait      | \c OS_EVR_WAIT_LEVEL       | Recording level for Generic Wait events.
962 Thread Flags      | \c OS_EVR_THFLAGS_LEVEL    | Recording level for Thread Flags events.
963 Event Flags       | \c OS_EVR_EVFLAGS_LEVEL    | Recording level for Event Flags events.
964 Timer             | \c OS_EVR_TIMER_LEVEL      | Recording level for Timer events.
965 Mutex             | \c OS_EVR_MUTEX_LEVEL      | Recording level for Mutex events.
966 Semaphore         | \c OS_EVR_SEMAPHORE_LEVEL  | Recording level for Semaphore events.
967 Memory Pool       | \c OS_EVR_MEMPOOL_LEVEL    | Recording level for Memory Pool events.
968 Message Queue     | \c OS_EVR_MSGQUEUE_LEVEL   | Recording level for Message Queue events.
969  
970
971 \subsection evtrecConfigEvtGen RTOS Event Generation
972
973 Enable the event generation for specific RTX component groups. This requires the RTX source variant (refer to \ref cre_rtx_proj_er for more information).
974
975 \image html config_wizard_evtrecGeneration.png "RTX_Config.h: Event generation configuration"
976
977 <br/>
978
979 Name              | \#define                 | Description
980 ------------------|--------------------------|----------------------------------------------------------------
981 Memory Management | \c OS_EVR_MEMORY         | Enables Memory Management events generation.
982 Kernel            | \c OS_EVR_KERNEL         | Enables Kernel events generation.
983 Thread            | \c OS_EVR_THREAD         | Enables Thread events generation.
984 Generic Wait      | \c OS_EVR_WAIT           | Enables Generic Wait events generation.
985 Thread Flags      | \c OS_EVR_THFLAGS        | Enables Thread Flags events generation.
986 Event Flags       | \c OS_EVR_EVFLAGS        | Enables Event Flags events generation.
987 Timer             | \c OS_EVR_TIMER          | Enables Timer events generation.
988 Mutex             | \c OS_EVR_MUTEX          | Enables Mutex events generation.
989 Semaphore         | \c OS_EVR_SEMAPHORE      | Enables Semaphore events generation.
990 Memory Pool       | \c OS_EVR_MEMPOOL        | Enables Memory Pool events generation.
991 Message Queue     | \c OS_EVR_MSGQUEUE       | Enables Message Queue events generation.
992
993 \note
994 If event generation for a component is disabled, the code that generates the related events is not included. Thus, \ref evtrecConfigGlobIni "filters" for this
995 component will have no effect and the debugger is unable to display any events for the related component group.
996
997
998 \subsection systemConfig_event_recording Manual event configuration
999
1000 To disable the generation of events for a specific RTX API call, use the following \#define settings (from <b>rtx_evrt.h</b>) and add these manually 
1001 to the <b>RTX_Config.h</b> file:
1002
1003 \b Memory \b events \n
1004 \c EVR_RTX_MEMORY_INIT_DISABLE, \c EVR_RTX_MEMORY_ALLOC_DISABLE, \c EVR_RTX_MEMORY_FREE_DISABLE,
1005 \c EVR_RTX_MEMORY_BLOCK_INIT_DISABLE, \c EVR_RTX_MEMORY_BLOCK_ALLOC_DISABLE, \c EVR_RTX_MEMORY_BLOCK_FREE_DISABLE
1006
1007 \b Kernel \b events \n
1008 \c EVR_RTX_KERNEL_ERROR_DISABLE, \c EVR_RTX_KERNEL_INITIALIZE_DISABLE, \c EVR_RTX_KERNEL_INITIALIZED_DISABLE,
1009 \c EVR_RTX_KERNEL_GET_INFO_DISABLE, \c EVR_RTX_KERNEL_INFO_RETRIEVED_DISABLE, \c EVR_RTX_KERNEL_GET_STATE_DISABLE,
1010 \c EVR_RTX_KERNEL_START_DISABLE, \c EVR_RTX_KERNEL_STARTED_DISABLE, \c EVR_RTX_KERNEL_LOCK_DISABLE,
1011 \c EVR_RTX_KERNEL_LOCKED_DISABLE, \c EVR_RTX_KERNEL_UNLOCK_DISABLE, \c EVR_RTX_KERNEL_UNLOCKED_DISABLE,
1012 \c EVR_RTX_KERNEL_RESTORE_LOCK_DISABLE, \c EVR_RTX_KERNEL_LOCK_RESTORED_DISABLE, \c EVR_RTX_KERNEL_SUSPEND_DISABLE,
1013 \c EVR_RTX_KERNEL_SUSPENDED_DISABLE, \c EVR_RTX_KERNEL_RESUME_DISABLE, \c EVR_RTX_KERNEL_RESUMED_DISABLE,
1014 \c EVR_RTX_KERNEL_GET_TICK_COUNT_DISABLE, \c EVR_RTX_KERNEL_GET_TICK_FREQ_DISABLE,
1015 \c EVR_RTX_KERNEL_GET_SYS_TIMER_COUNT_DISABLE, \c EVR_RTX_KERNEL_GET_SYS_TIMER_FREQ_DISABLE
1016
1017 \b Thread \b events \n
1018 \c EVR_RTX_THREAD_ERROR_DISABLE, \c EVR_RTX_THREAD_NEW_DISABLE, \c EVR_RTX_THREAD_CREATED_DISABLE,
1019 \c EVR_RTX_THREAD_GET_NAME_DISABLE, \c EVR_RTX_THREAD_GET_ID_DISABLE, \c EVR_RTX_THREAD_GET_STATE_DISABLE,
1020 \c EVR_RTX_THREAD_GET_STACK_SIZE_DISABLE, \c EVR_RTX_THREAD_GET_STACK_SPACE_DISABLE, \c EVR_RTX_THREAD_SET_PRIORITY_DISABLE,
1021 \c EVR_RTX_THREAD_PRIORITY_UPDATED_DISABLE, \c EVR_RTX_THREAD_GET_PRIORITY_DISABLE, \c EVR_RTX_THREAD_YIELD_DISABLE,
1022 \c EVR_RTX_THREAD_SUSPEND_DISABLE, \c EVR_RTX_THREAD_SUSPENDED_DISABLE, \c EVR_RTX_THREAD_RESUME_DISABLE,
1023 \c EVR_RTX_THREAD_RESUMED_DISABLE, \c EVR_RTX_THREAD_DETACH_DISABLE, \c EVR_RTX_THREAD_DETACHED_DISABLE,
1024 \c EVR_RTX_THREAD_JOIN_DISABLE, \c EVR_RTX_THREAD_JOIN_PENDING_DISABLE, \c EVR_RTX_THREAD_JOINED_DISABLE,
1025 \c EVR_RTX_THREAD_BLOCKED_DISABLE, \c EVR_RTX_THREAD_UNBLOCKED_DISABLE, \c EVR_RTX_THREAD_PREEMPTED_DISABLE,
1026 \c EVR_RTX_THREAD_SWITCHED_DISABLE, \c EVR_RTX_THREAD_EXIT_DISABLE, \c EVR_RTX_THREAD_TERMINATE_DISABLE,
1027 \c EVR_RTX_THREAD_DESTROYED_DISABLE, \c EVR_RTX_THREAD_GET_COUNT_DISABLE, \c EVR_RTX_THREAD_ENUMERATE_DISABLE
1028
1029 \b Generic \b wait \b events \n
1030 \c EVR_RTX_DELAY_ERROR_DISABLE, \c EVR_RTX_DELAY_DISABLE, \c EVR_RTX_DELAY_UNTIL_DISABLE,
1031 \c EVR_RTX_DELAY_STARTED_DISABLE, \c EVR_RTX_DELAY_UNTIL_STARTED_DISABLE, \c EVR_RTX_DELAY_COMPLETED_DISABLE 
1032
1033 \b Thread \b flag \b events \n
1034 \c EVR_RTX_THREAD_FLAGS_ERROR_DISABLE, \c EVR_RTX_THREAD_FLAGS_SET_DISABLE, \c EVR_RTX_THREAD_FLAGS_SET_DONE_DISABLE,
1035 \c EVR_RTX_THREAD_FLAGS_CLEAR_DISABLE, \c EVR_RTX_THREAD_FLAGS_CLEAR_DONE_DISABLE, \c EVR_RTX_THREAD_FLAGS_GET_DISABLE,
1036 \c EVR_RTX_THREAD_FLAGS_WAIT_DISABLE, \c EVR_RTX_THREAD_FLAGS_WAIT_PENDING_DISABLE, \c EVR_RTX_THREAD_FLAGS_WAIT_TIMEOUT_DISABLE,
1037 \c EVR_RTX_THREAD_FLAGS_WAIT_COMPLETED_DISABLE, \c EVR_RTX_THREAD_FLAGS_WAIT_NOT_COMPLETED_DISABLE
1038
1039 \b Event \b flag \b events \n
1040 \c EVR_RTX_EVENT_FLAGS_ERROR_DISABLE, \c EVR_RTX_EVENT_FLAGS_NEW_DISABLE, \c EVR_RTX_EVENT_FLAGS_CREATED_DISABLE,
1041 \c EVR_RTX_EVENT_FLAGS_GET_NAME_DISABLE, \c EVR_RTX_EVENT_FLAGS_SET_DISABLE, \c EVR_RTX_EVENT_FLAGS_SET_DONE_DISABLE,
1042 \c EVR_RTX_EVENT_FLAGS_CLEAR_DISABLE, \c EVR_RTX_EVENT_FLAGS_CLEAR_DONE_DISABLE, \c EVR_RTX_EVENT_FLAGS_GET_DISABLE,
1043 \c EVR_RTX_EVENT_FLAGS_WAIT_DISABLE, \c EVR_RTX_EVENT_FLAGS_WAIT_PENDING_DISABLE,
1044 \c EVR_RTX_EVENT_FLAGS_WAIT_TIMEOUT_DISABLE, \c EVR_RTX_EVENT_FLAGS_WAIT_COMPLETED_DISABLE,
1045 \c EVR_RTX_EVENT_FLAGS_WAIT_NOT_COMPLETED_DISABLE, \c EVR_RTX_EVENT_FLAGS_DELETE_DISABLE,
1046 \c EVR_RTX_EVENT_FLAGS_DESTROYED_DISABLE
1047
1048 \b Timer \b events \n
1049 \c EVR_RTX_TIMER_ERROR_DISABLE, \c EVR_RTX_TIMER_CALLBACK_DISABLE, \c EVR_RTX_TIMER_NEW_DISABLE,
1050 \c EVR_RTX_TIMER_CREATED_DISABLE, \c EVR_RTX_TIMER_GET_NAME_DISABLE, \c EVR_RTX_TIMER_START_DISABLE,
1051 \c EVR_RTX_TIMER_STARTED_DISABLE, \c EVR_RTX_TIMER_STOP_DISABLE, \c EVR_RTX_TIMER_STOPPED_DISABLE,
1052 \c EVR_RTX_TIMER_IS_RUNNING_DISABLE, \c EVR_RTX_TIMER_DELETE_DISABLE, \c EVR_RTX_TIMER_DESTROYED_DISABLE
1053
1054 \b Mutex \b events \n
1055 \c EVR_RTX_MUTEX_ERROR_DISABLE, \c EVR_RTX_MUTEX_NEW_DISABLE, \c EVR_RTX_MUTEX_CREATED_DISABLE,
1056 \c EVR_RTX_MUTEX_GET_NAME_DISABLE, \c EVR_RTX_MUTEX_ACQUIRE_DISABLE, \c EVR_RTX_MUTEX_ACQUIRE_PENDING_DISABLE,
1057 \c EVR_RTX_MUTEX_ACQUIRE_TIMEOUT_DISABLE, \c EVR_RTX_MUTEX_ACQUIRED_DISABLE, \c EVR_RTX_MUTEX_NOT_ACQUIRED_DISABLE,
1058 \c EVR_RTX_MUTEX_RELEASE_DISABLE, \c EVR_RTX_MUTEX_RELEASED_DISABLE, \c EVR_RTX_MUTEX_GET_OWNER_DISABLE,
1059 \c EVR_RTX_MUTEX_DELETE_DISABLE, \c EVR_RTX_MUTEX_DESTROYED_DISABLE
1060
1061 \b Semaphore \b events \n
1062 \c EVR_RTX_SEMAPHORE_ERROR_DISABLE, \c EVR_RTX_SEMAPHORE_NEW_DISABLE, \c EVR_RTX_SEMAPHORE_CREATED_DISABLE,
1063 \c EVR_RTX_SEMAPHORE_GET_NAME_DISABLE, \c EVR_RTX_SEMAPHORE_ACQUIRE_DISABLE, \c EVR_RTX_SEMAPHORE_ACQUIRE_PENDING_DISABLE,
1064 \c EVR_RTX_SEMAPHORE_ACQUIRE_TIMEOUT_DISABLE, \c EVR_RTX_SEMAPHORE_ACQUIRED_DISABLE,
1065 \c EVR_RTX_SEMAPHORE_NOT_ACQUIRED_DISABLE, \c EVR_RTX_SEMAPHORE_RELEASE_DISABLE, \c EVR_RTX_SEMAPHORE_RELEASED_DISABLE,
1066 \c EVR_RTX_SEMAPHORE_GET_COUNT_DISABLE, \c EVR_RTX_SEMAPHORE_DELETE_DISABLE, \c EVR_RTX_SEMAPHORE_DESTROYED_DISABLE
1067
1068 \b Memory \b pool \b events \n
1069 \c EVR_RTX_MEMORY_POOL_ERROR_DISABLE, \c EVR_RTX_MEMORY_POOL_NEW_DISABLE, \c EVR_RTX_MEMORY_POOL_CREATED_DISABLE,
1070 \c EVR_RTX_MEMORY_POOL_GET_NAME_DISABLE, \c EVR_RTX_MEMORY_POOL_ALLOC_DISABLE, \c EVR_RTX_MEMORY_POOL_ALLOC_PENDING_DISABLE,
1071 \c EVR_RTX_MEMORY_POOL_ALLOC_TIMEOUT_DISABLE, \c EVR_RTX_MEMORY_POOL_ALLOCATED_DISABLE,
1072 \c EVR_RTX_MEMORY_POOL_ALLOC_FAILED_DISABLE, \c EVR_RTX_MEMORY_POOL_FREE_DISABLE, \c EVR_RTX_MEMORY_POOL_DEALLOCATED_DISABLE,
1073 \c EVR_RTX_MEMORY_POOL_FREE_FAILED_DISABLE, \c EVR_RTX_MEMORY_POOL_GET_CAPACITY_DISABLE,
1074 \c EVR_RTX_MEMORY_POOL_GET_BLOCK_SZIE_DISABLE, \c EVR_RTX_MEMORY_POOL_GET_COUNT_DISABLE,
1075 \c EVR_RTX_MEMORY_POOL_GET_SPACE_DISABLE, \c EVR_RTX_MEMORY_POOL_DELETE_DISABLE, \c EVR_RTX_MEMORY_POOL_DESTROYED_DISABLE
1076
1077 \b Message \b queue \b events \n
1078 \c EVR_RTX_MESSAGE_QUEUE_ERROR_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_NEW_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_CREATED_DISABLE,
1079 \c EVR_RTX_MESSAGE_QUEUE_GET_NAME_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_PUT_DISABLE,
1080 \c EVR_RTX_MESSAGE_QUEUE_PUT_PENDING_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_PUT_TIMEOUT_DISABLE,
1081 \c EVR_RTX_MESSAGE_QUEUE_INSERT_PENDING_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_INSERTED_DISABLE,
1082 \c EVR_RTX_MESSAGE_QUEUE_NOT_INSERTED_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_GET_DISABLE,
1083 \c EVR_RTX_MESSAGE_QUEUE_GET_PENDING_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_GET_TIMEOUT_DISABLE,
1084 \c EVR_RTX_MESSAGE_QUEUE_RETRIEVED_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_NOT_RETRIEVED_DISABLE,
1085 \c EVR_RTX_MESSAGE_QUEUE_GET_CAPACITY_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_GET_MSG_SIZE_DISABLE,
1086 \c EVR_RTX_MESSAGE_QUEUE_GET_COUNT_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_GET_SPACE_DISABLE,
1087 \c EVR_RTX_MESSAGE_QUEUE_RESET_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_RESET_DONE_DISABLE,
1088 \c EVR_RTX_MESSAGE_QUEUE_DELETE_DISABLE, \c EVR_RTX_MESSAGE_QUEUE_DESTROYED_DISABLE
1089
1090
1091 */
1092
1093
1094 /* ========================================================================================================================== */
1095 /** 
1096 \page creating_RTX5_LIB Building the RTX5 Library
1097
1098 The CMSIS Pack contains a µVision project for building the complete set of RTX5 libraries. This project can also be used as
1099 a reference for building the RTX5 libraries using a tool-chain of your choice.
1100
1101 -# Open the project \b RTX_CM.uvprojx from the pack folder <b>CMSIS/RTOS2/RTX/Library/ARM/MDK</b> in µVision.
1102 -# Select the project target that matches your device's processor core. 
1103    \n The project provides target configuration for all supported Cortex-M targets supported by RTX5.
1104 -# You can find out about the required preprocessor defines in the dialogs <b>Options for Target - C/C++</b> and
1105    <b>Options for Target - Asm</b>. Note the need to use at least the C99 compiler mode when building RTX from source.
1106 -# From the <b>Project</b> window you find the list of source files required for a complete library build.
1107 -# Build the library of your choice using \b Project - \b Build \b Target (or press F7).
1108
1109 \image html own_lib_projwin.png "Project with files for Armv8-M Mainline"
1110 */
1111
1112
1113
1114 /* ========================================================================================================================== */
1115 /** 
1116 \page technicalData5 Technical Data
1117
1118 The following section contains technical information about RTX v5.
1119
1120  - \subpage pHardwareRequirements lists the resource requirements of the RTX v5 kernel along with hardware dependencies.
1121  - \subpage pStackRequirements lists the memory requirements for the main stack when running the RTX v5 kernel. 
1122  - \subpage pControlBlockSizes provides memory size information for \ref StaticObjectMemory "object-specific control block memory allocation".
1123  - \subpage pDirectory_Files is an overview of the supplied files that belong to RTX v5
1124 \ifnot FuSaRTS
1125  - \subpage pToolchains details about the compiler support which includes ArmCC (MDK, DS-5), IAR EW-ARM, and GCC.
1126 \endif
1127
1128
1129 \page pHardwareRequirements Hardware Requirements
1130
1131 The following section lists the hardware requirements for RTX v5 on the various supported target processors:
1132
1133 \section tpProcessor Processor Requirements
1134
1135 RTX assumes a fully functionable processor and uses the following hardware features. It does not implement any confidence test for processor validation which should be provided by an user-supplied software test library.
1136
1137
1138 \if ARMv8M \subsection tpCortexM0_M0P_M23 Cortex-M0/M0+/M23 target processor
1139 \endif
1140
1141 \ifnot ARMv8M \subsection tpCortexM0_M0P_M23 Cortex-M0/M0+ target processor
1142 \endif
1143
1144 Hardware Requirement       | Description
1145 :--------------------------|:------------------------------------------------------
1146 SysTick timer              | The SysTick timer generates the kernel tick interrupts and the interface is implemented in %os_systick.c using the \ref CMSIS_RTOS_TickAPI
1147 Exception Handler          | RTX implements exception handlers for SVC, PendSV, and SysTick interrupt
1148 Core Registers             | The processor status is read using the following core registers: CONTROL, IPSR, PRIMASK
1149 System Control Block (SBC) | To control and setup the processor exceptions including PendSV and SVC
1150 Interrupt Control          | The CMSIS-Core functions __disable_irq and __enable_irq to control the interrupt system via the CPSR core register.
1151
1152 The RTX implements interfaces to the processor hardware in following files: 
1153  - <b>%irq_cm0.s</b> defines exception handlers for Cortex-M0/M0+
1154 \if ARMv8M
1155  - <b>%irq_armv8mbl_common.s</b> defines exception handlers for Cortex-M23
1156 \endif 
1157  - <b>%rtx_core_cm.h</b> defines processor specific helper functions and the interfaces to Core Registers and Core Peripherals.
1158  - <b>%os_tick.h</b> is the \ref CMSIS_RTOS_TickAPI that defines the interface functions to the SysTick timer.
1159
1160 \note
1161  - The CMSIS-Core variable \c SystemCoreClock is used by RTX to configure the SysTick timer. 
1162
1163 \if ARMv8M \subsection tpCortexM3_M4_M7_M33_M35P Cortex-M3/M4/M7/M33/M35P target processor
1164 \endif 
1165
1166 \ifnot ARMv8M \subsection tpCortexM3_M4_M7_M33_M35P Cortex-M3/M4/M7 target processor
1167 \endif 
1168
1169 RTX assumes a fully function-able processor and uses the following hardware features:
1170
1171 Hardware Item       | Requirement Description
1172 :--------------------------|:------------------------------------------------------
1173 SysTick timer              | The \b SysTick timer shall be available in the processor. 
1174 System Exceptions          | The RTX requires \b SVC, \b PendSV, and \b SysTick exceptions and implements corresponding exception handlers.
1175 Core Registers             | The RTX uses \b CONTROL, \b IPSR , \b PRIMASK and \b BASEPRI core registers for reading processor status. 
1176 System Control Block (SCB) | The RTX uses \b SCB registers to control and setup the processor system exceptions including PendSV and SVC.
1177 NVIC Interface             | CMSIS-Core function \b NVIC_GetPriorityGrouping is used by the RTX to setup interrupt priorities.
1178 LDREX, STREX instructions  | Exclusive access instructions \b LDREX and \b STREX are used to implement atomic execution without disabling interrupts.
1179
1180 The interface files to the processor hardware are: 
1181  - <b>%irq_cm3.s</b> defines exception handlers for Cortex-M3 and Cortex-M4/M7 without floating point unit.
1182  - <b>%irq_cm4f.s</b> defines exception handlers for Cortex-M4/M7 with floating point unit.
1183 \if ARMv8M 
1184  - <b>%irq_armv8mml_common.s</b> defines exception handlers for Cortex-M33/M35P
1185 \endif
1186  - <b>%rtx_core_cm.h</b> defines processor specific helper functions and the interfaces to Core Registers and Core Peripherals.
1187  - <b>%os_tick.h</b> is the \ref CMSIS_RTOS_TickAPI that defines the interface functions to the SysTick timer.
1188
1189 \note
1190  - The CMSIS-Core variable \c SystemCoreClock is used by RTX to configure the SysTick timer.
1191
1192 \if ARMCA \subsection tpCortexA5_A7_A9 Cortex-A5/A7/A9 target processor
1193
1194
1195 Hardware Requirement       | Description
1196 :--------------------------|:------------------------------------------------------
1197 Timer Peripheral           | An arbitrary timer peripheral generates the kernel tick interrupts. The interfaces for Cortex-A Generic Timer and Private Timer are implemented in %os_tick_gtim.c and %os_tick_ptim.c using the \ref CMSIS_RTOS_TickAPI
1198 Exception Handler          | RTX implements exception handlers for SVC, IRQ, Data Abort, Prefetch Abort and Undefined Instruction interrupt.
1199 Core Registers             | The processor status is read using the following core registers: CPSR, CPACR and FPSCR.
1200 LDREX, STREX instruction   | Atomic execution avoids the requirement to disable interrupts and is implemented via exclusive access instructions.
1201 Interrupt Controller       | An interrupt controller interface is required to setup and control Timer Peripheral interrupt. The interface for Arm GIC (Generic Interrupt Controller) is implemented in %irq_ctrl_gic.c using the <a class="el" href="../../Core_A/html/group__irq__ctrl__gr.html">IRQ Controller API</a>.
1202
1203 The interface files to the processor hardware are: 
1204  - <b>%irq_ca.s</b> defines SVC, IRQ, Data Abort, Prefetch Abort and Undefined Instruction exception handlers.
1205  - <b>%rtx_core_ca.h</b> defines processor specific helper functions and the interfaces to Core Registers and Core Peripherals.
1206  - <b>%os_tick.h</b> is the \ref CMSIS_RTOS_TickAPI that defines the interface functions to the timer peripheral.
1207  - <b>%irq_ctrl.h</b> is the <a class="el" href="../../Core_A/html/group__irq__ctrl__gr.html">IRQ Controller API</a> that defines the interface functions to the interrupt controller.
1208
1209 \note
1210  - The CMSIS-Core variable \c SystemCoreClock is used by RTX to configure the timer peripheral.
1211 \endif
1212
1213 \section rMemory Memory Requirements
1214 RTX requires RAM memory that is accessible with contiguous linear addressing.  When memory is split across multiple memory banks, some systems 
1215 do not accept multiple load or store operations on this memory blocks. 
1216
1217 RTX does not implement any confidence test for memory validation. This should be implemented by an user-supplied software test library.
1218
1219
1220 \page pStackRequirements Stack Requirements
1221
1222 Keil RTX v5 kernel functions are executed in handler mode (using PendSV/SysTick/SVC) and the tables below lists the maximum stack requirements for the Main Stack (MSP) that the user
1223 should consider. 
1224
1225 The stack for the \ref osKernelStart function is referred as "Startup" and RTX v5 uses 32 bytes (with Arm Compiler). However the user should also consider additional stack that
1226 might be allocated by the 'main' function of the embedded application. The following picture shows a worst-case memory allocation of the Main Stack.
1227
1228 \image html "KernelStackUsage.png" "Main Stack usage of RTX v5 applications"
1229
1230 The stack requirements depend on the compiler and the optimization level.  RTX v5 supports event annotations and this configuration impacts also the stack requirement.
1231
1232 <b>Arm Compiler ARMCC V6.10</b>: Main Stack requirements for PendSV/SysTick/SVC
1233
1234 Optimization         | RTX Kernel  | RTX Kernel + Event Recorder
1235 :--------------------|:------------|:--------------------------------
1236 -O1 (Debug)          | 152 bytes   | 280 bytes   
1237 -Os (Balanced)       | 120 bytes   | 256 bytes
1238 -Oz (Size)           | 112 bytes   | 248 bytes
1239
1240 <b>Arm Compiler ARMCC V5.06</b>: Main Stack requirements for PendSV/SysTick/SVC
1241
1242 Optimization         | RTX Kernel  | RTX Kernel + Event Recorder
1243 :--------------------|:------------|:--------------------------------
1244 -O0 (Debug)          | 176 bytes   | 360 bytes   
1245 -O1                  | 112 bytes   | 248 bytes
1246 -O2                  | 112 bytes   | 256 bytes
1247 -O3                  | 112 bytes   | 248 bytes
1248
1249
1250 \page pControlBlockSizes Control Block Sizes
1251
1252 Keil RTX v5 specific control block definitions (including sizes) as well as memory pool and message queue memory requirements
1253 are defined in the header file <b>rtx_os.h</b>:
1254
1255 If you provide memory for the RTOS objects, you need to know the size that is required for each object control block.
1256 The memory of the control block is provided by the parameter \em attr of the related \em osXxxxNew function.
1257 The element \em cb_mem is the memory address, \em cb_size is the size of the control block memory.
1258
1259 Refer to \ref StaticObjectMemory for more information.
1260
1261 The following table lists the control block sizes:
1262
1263 Category                      | Control Block Size Attribute      | Size       | \#define symbol
1264 :-----------------------------|:----------------------------------|:-----------|:--------------------
1265 \ref CMSIS_RTOS_ThreadMgmt    | \ref osThreadAttr_t::cb_mem       | 68 bytes   | \ref osRtxThreadCbSize
1266 \ref CMSIS_RTOS_TimerMgmt     | \ref osTimerAttr_t::cb_mem        | 32 bytes   | \ref osRtxTimerCbSize
1267 \ref CMSIS_RTOS_EventFlags    | \ref osEventFlagsAttr_t::cb_mem   | 16 bytes   | \ref osRtxEventFlagsCbSize
1268 \ref CMSIS_RTOS_MutexMgmt     | \ref osMutexAttr_t::cb_mem        | 28 bytes   | \ref osRtxMutexCbSize
1269 \ref CMSIS_RTOS_SemaphoreMgmt | \ref osSemaphoreAttr_t::cb_mem    | 16 bytes   | \ref osRtxSemaphoreCbSize
1270 \ref CMSIS_RTOS_PoolMgmt      | \ref osMemoryPoolAttr_t::cb_mem   | 36 bytes   | \ref osRtxMemoryPoolCbSize
1271 \ref CMSIS_RTOS_Message       | \ref osMessageQueueAttr_t::cb_mem | 52 bytes   | \ref osRtxMessageQueueCbSize
1272
1273
1274 \page pDirectory_Files Directory Structure and File Overview
1275
1276 The following section provides an overview of the directory structure and the files that are relevant for the user's for
1277 CMSIS-RTOS RTX v5. The following directory references start below the CMSIS pack installation path, for example
1278 ARM/CMSIS/<i>version</i>/CMSIS/RTOS2.
1279
1280 \section Folders RTX v5 Directory Structure
1281
1282 The CMSIS-RTOS RTX v5 is delivered in source code and several examples are provided. 
1283
1284 <table class="cmtable" summary="CMSIS-RTOS RTX Library Files">
1285     <tr>
1286       <th>Directory</th>
1287       <th>Content</th>
1288     </tr>
1289     <tr>
1290       <td>Include</td>
1291       <td>Header files: \b %cmsis_os2.h for \ref rtos_api2 and \b %os_tick.h for \ref rtos_os_tick_api.</td>
1292     </tr>
1293     <tr>
1294       <td>Source</td>
1295       <td>Generic <b>OS tick</b> implementations for various processors based on \ref rtos_os_tick_api.</td>
1296     </tr>
1297     <tr>
1298       <td>Template</td>
1299       <td><a class="el" href="../../RTOS/html/index.html">CMSIS-RTOS API v1</a> template source and header file.</td>
1300     </tr>
1301     <tr>
1302       <td>RTX</td>
1303       <td>Directory with RTX specific files and folders. Also contains the component viewer description file.</td>
1304     </tr>
1305     <tr>
1306       <td>RTX/Config</td>
1307       <td>CMSIS-RTOS RTX configuration files %RTX_Config.h and %RTX_Config.c.</td>
1308     </tr>
1309     <tr>
1310       <td>RTX/Examples</td>
1311       <td>Example projects that can be directly used in development tools.</td>
1312     </tr>
1313     <tr>
1314       <td>RTX/Include</td>
1315       <td>RTX v5 specific include files.</td>
1316     </tr>
1317     <tr>
1318       <td>RTX/Include1</td>
1319       <td>CMSIS-RTOS v1 API header file.</td>
1320     </tr>
1321     <tr>
1322       <td>RTX/Library</td>
1323       <td>Pre-built libraries (see next table for details).</td>
1324     </tr>
1325     <tr>
1326       <td>RTX/Source</td>
1327       <td>Source code that can be used with ARMCC and GCC.</td>
1328     </tr>
1329     <tr>
1330       <td>RTX/Template</td>
1331       <td>User code templates for creating application projects with CMSIS-RTOS RTX v5.</td>
1332     </tr>
1333 </table>
1334
1335 \section libFiles RTX v5 Library Files
1336
1337 The CMSIS-RTOS RTX Library is available pre-compiled for ARMCC and GCC compilers and supports all Cortex-M
1338 processor variants in every configuration  \if ARMv8M , including Arm Cortex-M23, Cortex-M33 and Cortex-M35P\endif.
1339
1340 <table class="cmtable" summary="CMSIS-RTOS RTX Library Files">
1341     <tr>
1342       <th>Library File</th>
1343       <th>Processor Configuration</th>
1344     </tr>
1345     <tr>
1346       <td>Library/ARM/RTX_CM0.lib</td>
1347       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Cortex-M0 and M1, little-endian.</td>
1348     </tr>
1349     <tr>
1350       <td>Library/ARM/RTX_CM3.lib</td>
1351       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Cortex-M3, M4, and M7 without FPU, little-endian.</td>
1352     </tr>
1353     <tr>
1354       <td>Library/ARM/RTX_CM4F.lib</td>
1355       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Cortex-M4 and M7 with FPU, little-endian.</td>
1356     </tr>
1357 \if ARMv8M      
1358     <tr>
1359       <td>Library/ARM/RTX_V8MB.lib</td>
1360       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Baseline.</td>
1361     </tr>
1362     <tr>
1363       <td>Library/ARM/RTX_V8MBN.lib</td>
1364       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Baseline, non-secure.</td>
1365     </tr>
1366     <tr>
1367       <td>Library/ARM/RTX_V8MM.lib</td>
1368       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Mainline.</td>
1369     </tr>
1370     <tr>
1371       <td>Library/ARM/RTX_V8MMF.lib</td>
1372       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Mainline with FPU.</td>
1373     </tr>
1374     <tr>
1375       <td>Library/ARM/RTX_V8MMFN.lib</td>
1376       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Mainline with FPU, non-secure.</td>
1377     </tr>
1378     <tr>
1379       <td>Library/ARM/RTX_V8MMN.lib</td>
1380       <td>CMSIS-RTOS RTX Library for ARMCC Compiler, Armv8-M Mainline, non-secure.</td>
1381     </tr>
1382 \endif  
1383 \ifnot FuSaRTS
1384     <tr>
1385       <td>Library/GCC/libRTX_CM0.a</td>
1386       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Cortex-M0 and M1, little-endian.</td>
1387     </tr>
1388     <tr>
1389       <td>Library/GCC/libRTX_CM3.a</td>
1390       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Cortex-M3, M4, and M7 without FPU, little-endian.</td>
1391     </tr>
1392     <tr>
1393       <td>Library/GCC/libRTX_CM4F.a</td>
1394       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Cortex-M4 and M7 with FPU, little-endian.</td>
1395     </tr>
1396 \endif  
1397 \if ARMv8M      
1398     <tr>
1399       <td>Library/GCC/libRTX_V8MB.a</td>
1400       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Baseline.</td>
1401     </tr>
1402     <tr>
1403       <td>Library/GCC/libRTX_V8MBN.a</td>
1404       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Baseline, non-secure.</td>
1405     </tr>
1406     <tr>
1407       <td>Library/GCC/libRTX_V8MM.a</td>
1408       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Mainline.</td>
1409     </tr>
1410     <tr>
1411       <td>Library/GCC/libRTX_V8MMF.a</td>
1412       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Mainline with FPU.</td>
1413     </tr>
1414     <tr>
1415       <td>Library/GCC/libRTX_V8MMFN.a</td>
1416       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Mainline with FPU, non-secure.</td>
1417     </tr>
1418     <tr>
1419       <td>Library/GCC/libRTX_V8MMN.a</td>
1420       <td>CMSIS-RTOS libRTX Library for GCC Compiler, Armv8-M Mainline, non-secure.</td>
1421     </tr>
1422 \endif
1423 </table>
1424 */
1425
1426
1427
1428 /**
1429 \ifnot FuSaRTS \page pToolchains Supported Toolchains
1430
1431 Keil RTX5 is developed and tested using the common toolchains and development environments.
1432
1433 \section technicalData_Toolchain_ARM Arm Compiler (Arm/Keil MDK, uVision5)
1434
1435 RTX5 is initially developed and optimized using Arm Compiler and Arm/Keil MDK.
1436 The current release is tested with the following versions:
1437 <ul>
1438  <li>Arm Compiler 5.06 Update 6</li>
1439  <li>Arm Compiler 6.6.2 (Long Term Maintenance)</li>
1440  <li>Arm Compiler 6.9</li>
1441  <li>RTOS-aware debugging with uVision 5.24</li>
1442 </ul>
1443
1444
1445 \section technicalData_Toolchain_IAR IAR Embedded Workbench
1446
1447 RTX5 has been ported to the IAR Embedded Workbench. The following releases are known to work:
1448 <ul>
1449  <li>IAR Embedded Workbench 7.7 (<a href="https://github.com/ARM-software/CMSIS_5/issues/201">community report</a>)</li>
1450  <li>IAR Embedded Workbench 7.80.4</li>
1451  <li><b>IAR Embedded Workbench 8.20.1</b></li>
1452 </ul>
1453
1454 \section technicalData_Toolchain_GCC GNU Compiler Collection
1455
1456 RTX5 has also been ported to support GCC, maintenance mainly relays on community contribution.
1457 Active development is currently tested with:
1458 <ul>
1459  <li>GNU Tools for Arm Embedded 6.3.1 20170620</li>
1460 </ul>
1461
1462 \endif
1463 */
1464
1465
1466 /* ========================================================================================================================== */
1467 /** 
1468 \page CodingRules Coding Rules
1469
1470 CMSIS components use <a href="../../General/html/index.html#CodingRules"><b>general coding rules</b></a> across the various components.
1471
1472 The CMSIS-RTOS2 API is using the following <b>Namespace</b> prefixes:
1473   - <b>os</b> for all definitions and function names.
1474   - <b>os</b> with postfix <b>_t</b> for all typedefs.
1475   
1476 The CMSIS-RTOS2 RTX v5 implementation is using the following <b>Namespace</b> prefixes for public symbol definitions:
1477   - <b>osRtx</b> for all general definitions and function names that relate to the RTX kernel.
1478   - <b>osRtx</b> with postfix <b>_t</b> for all typedefs.
1479   - <b>OS_Tick_</b> for interface functions to the hardware system tick timer.
1480   - <b>EvrRtx</b> for event function annotations that interface to the Event Recorder.
1481 */
1482
1483 /* ========================================================================================================================== */
1484 /** 
1485 \page misraCompliance5 MISRA C:2012 Compliance 
1486 The RTX5 C source files use <b><a class=el href="http://www.misra.org.uk/" target="_blank">MISRA C:2012</a></b> guidelines as underlying coding standard.
1487
1488 For MISRA validation, <b><a class=el href="http://www.gimpel.com/" target="_blank">PC-lint</a></b> V9.00L is used with configuration for Arm Compiler V6.9.
1489 The PC-Lint validation setup is part of the project file <b>.\\CMSIS\\RTOS2\\RTX\\Library\\ARM\\MDK\\RTX_CM.uvprojx</b> as shown below. 
1490 Refer to <b><a class=el href="http://www.keil.com/support/man/docs/uv4/uv4_ut_pclint_validation.htm" target="_blank">Setup for PC-Lint</a></b> for more information.
1491
1492 \image html "PC-Lint.png" "Running PC-Lint within MDK - uVision"
1493
1494 The PC-Lint configuration uses the following Options under <b>Tools - PC-Lint Setup...</b>:
1495  - Config File: co-ARMCC-6.lnt (20-Mar-2017) with additional options:
1496 \code
1497    +rw(__restrict)
1498    -esym(526,__builtin_*) -esym(628,__builtin_*)
1499    -sem(__builtin_clz, pure)
1500    +doffsetof(t,m)=((size_t)&((t*)0)->m) -emacro((413,923,9078),offsetof)
1501    -ecall(534,__disable_irq)
1502 \endcode
1503  - Included Project Information: 
1504    - Enable: Add 'Include' paths
1505    - Enable: Add 'Software Packs' paths
1506    - Enable: Verify 'Software Packs' includes
1507    - Enable: Add 'Preprocessor' symbols
1508    - Enable: Add 'Define' symbols
1509  - MISRA  Rules Setup and Configuration: 
1510    - MISRQ_C_2012_Config.lnt; all rules enabled
1511    - includes definition file: au-misra3.lnt (12-Jun-2014)
1512  - Additional Lint Commands (for both single and mutiple files):
1513 \code
1514    - emacro(835,osRtxConfigPrivilegedMode)
1515 \endcode
1516
1517 The C source code is annotated with PC-Lint control comments to allows MISRA deviations.
1518 These deviations with the underlaying design decisions are described in the following.
1519    
1520 Deviations
1521 ----------
1522
1523 The RTX source code has the following deviations from MISRA:
1524   - \ref MISRA_1
1525   - \ref MISRA_2
1526   - \ref MISRA_3
1527   - \ref MISRA_4
1528   - \ref MISRA_5
1529   - \ref MISRA_6
1530   - \ref MISRA_7
1531   - \ref MISRA_8
1532   - \ref MISRA_9
1533   - \ref MISRA_10
1534   - \ref MISRA_11
1535   - \ref MISRA_12
1536   - \ref MISRA_13
1537
1538 All source code deviations are clearly marked and in summary these deviations affect the following MISRA rules:
1539  - [MISRA 2012 Directive  4.9,  advisory]: A function should be used in preference to a function-like macro where yet are interchangeable
1540  - [MISRA 2012 Rule       1.3,  required]: There shall be no occurrence of undefined or critical unspecified behavior
1541  - [MISRA 2012 Rule      10.3,  required]: Expression assigned to a narrower or different essential type
1542  - [MISRA 2012 Rule      10.5,  advisory]: Impermissible cast; cannot cast from 'essentially unsigned' to 'essentially enum\<i\>'
1543  - [MISRA 2012 Rule      11.1,  required]: Conversions shall not be performed between a pointer to a function and any other type
1544  - [MISRA 2012 Rule      11.3,  required]: A cast shall not be performed between a pointer to object type and a pointer to a different object type
1545  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1546  - [MISRA 2012 Rule      11.5,  advisory]: A conversion should not be performed from pointer to void into pointer to object
1547  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1548  - [MISRA 2012 Rule      15.5,  advisory]: A function should have a single point of exit at the end
1549  - [MISRA 2012 Rule      20.10, advisory]: The # and ## preprocessor operators should not be used
1550
1551 In the following all deviations are described in detail.
1552
1553 \section MISRA_1 [MISRA Note 1]: Return statements for parameter checking
1554
1555 Return statements are used at the beginning of several functions to validate parameter values and object states.
1556 The function returns immediately without any side-effects and typically an error status is set. This structure
1557 keeps the source code better structured and easier to understand.
1558
1559 This design decision implies the following MISRA deviation:
1560  - [MISRA 2012 Rule      15.5,  advisory]: A function should have a single point of exit at the end
1561
1562 All locations in the source code are marked with: 
1563 \code
1564   //lint -e{904} "Return statement before end of function" [MISRA Note 1]
1565 \endcode 
1566
1567
1568 \section MISRA_2 [MISRA Note 2]: Object identifiers are void pointers
1569
1570 CMSIS-RTOS is independant of an underlying RTOS implementation. The object idenifiers are therefore defined as void pointers to:
1571   - allow application programs that are agnostic from an underlying RTOS implementation.
1572   - avoid accidently accesses an RTOS control block from an application program.
1573
1574 This design decisions imply the following MISRA deviations:
1575  - [MISRA 2012 Rule      11.3,  required]: A cast shall not be performed between a pointer to object type and a pointer to a different object type
1576  - [MISRA 2012 Rule      11.5,  advisory]: A conversion should not be performed from pointer to void into pointer to object
1577
1578 All locations in the source code are marked with: 
1579 \code
1580   //lint -e{9079} -e{9087} "cast from pointer to void to pointer to object type" [MISRA Note 2]
1581 \endcode 
1582
1583 In the RTX5 implementation the requried pointer conversions are implemented in the header file rtx_lib.h with the following inline functions:
1584
1585 \code
1586 osRtxThread_t       *osRtxThreadId (osThread_t thread_id);
1587 osRtxTimer_t        *osRtxTimerId (osTimer_t timer_id);
1588 osRtxEventFlags_t   *osRtxEventFlagsId (osEventFlags_t ef_id);
1589 osRtxMutex_t        *osRtxMutexId (osMutex_t mutex_id);
1590 osRtxSemaphore_t    *osRtxSemaphoreId (osSemaphore_t semaphore_id);
1591 osRtxMemoryPool_t   *osRtxMemoryPoolId (osMemoryPoolId_t mp_id);
1592 osRtxMessageQueue_t *osRtxMessageQueueId(osMessageQueueId_t mq_id);
1593 \endcode
1594
1595 \section MISRA_3 [MISRA Note 3]: Conversion to unified object control blocks
1596
1597 RTX uses a unified object control block structure that contains common object members.
1598 The unified control blocks use a fixed layout at the beginning of the sturcture and starts always with an object identifier.
1599 This allows common object functions that receive a pointer to a unified object control block and reference only the
1600 pointer or the members in the fixed layout. Using common object functions and data (for example the ISR queue) reduces 
1601 code complexity and keeps the source code better structured.  Refer also to \ref MISRA_4
1602
1603 This design decisions imply the following MISRA deviations:
1604  - [MISRA 2012 Rule      11.3,  required]: A cast shall not be performed between a pointer to object type and a pointer to a different object type
1605  - [MISRA 2012 Rule      11.5,  advisory]: A conversion should not be performed from pointer to void into pointer to object
1606
1607 All locations in the source code are marked with: 
1608 \code
1609   //lint -e{9079} -e{9087} "cast from pointer to void to pointer to object type" [MISRA Note 3]
1610 \endcode 
1611
1612
1613 In the RTX5 implementation the requried pointer conversions are implemented in the header file \em rtx_lib.h with the following inline function:
1614
1615 \code
1616 osRtxObject_t *osRtxObject (void *object);
1617 \endcode
1618
1619
1620 \section MISRA_4 [MISRA Note 4]: Conversion from unified object control blocks
1621
1622 RTX uses a unified object control block structure that contains common object members. Refer to \ref MISRA_3 for more information.
1623 To process specifc control block data, pointer conversions are required.
1624
1625 This design decisions imply the following MISRA deviations:
1626  - [MISRA 2012 Rule       1.3,  required]: There shall be no occurrence of undefined or critical unspecified behavior
1627  - [MISRA 2012 Rule      11.3,  required]: A cast shall not be performed between a pointer to object type and a pointer to a different object type
1628 In addition PC-Lint issues:
1629  - Info  826: Suspicious pointer-to-pointer conversion (area too small)
1630
1631 All locations in the source code are marked with: 
1632 \code
1633   //lint -e{740} -e{826} -e{9087} "cast from pointer to generic object to specific object" [MISRA Note 4]
1634 \endcode 
1635
1636 In the RTX5 source code the requried pointer conversions are implemented in the header file \em rtx_lib.h with the following inline functions:
1637
1638 \code
1639 osRtxThread_t       *osRtxThreadObject (osRtxObject_t *object);
1640 osRtxTimer_t        *osRtxTimerObject (osRtxObject_t *object);
1641 osRtxEventFlags_t   *osRtxEventFlagsObject (osRtxObject_t *object);
1642 osRtxMutex_t        *osRtxMutexObject (osRtxObject_t *object);
1643 osRtxSemaphore_t    *osRtxSemaphoreObject (osRtxObject_t *object);
1644 osRtxMemoryPool_t   *osRtxMemoryPoolObject (osRtxObject_t *object);
1645 osRtxMessageQueue_t *osRtxMessageQueueObject (osRtxObject_t *object);
1646 osRtxMessage_t      *osRtxMessageObject (osRtxObject_t *object);
1647 \endcode
1648
1649 \section MISRA_5 [MISRA Note 5]: Conversion to object types
1650
1651 The RTX5 kernel has common memory management functions that use void pointers. These memory allocation fuctions returns 
1652 a void pointer which is correctly aligned for object types.
1653
1654 This design decision implies the following MISRA deviations:
1655  - [MISRA 2012 Rule      11.5,  advisory]: A conversion should not be performed from pointer to void into pointer to object
1656
1657 All locations in the source code are marked with: 
1658 \code
1659   //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 5]
1660 \endcode 
1661
1662 Code example:
1663
1664 \code 
1665   os_thread_t  *thread;
1666    :
1667   //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 5]
1668   thread = osRtxMemoryPoolAlloc(osRtxInfo.mpi.thread);
1669 \endcode
1670
1671
1672
1673 \section MISRA_6 [MISRA Note 6]: Conversion from user provided storage
1674
1675 CMSIS-RTOS2 and RTX5 support user provided storage for object control blocks, stack, and data storage.
1676 The API uses void pointers to define the location of this user provided storage. It is therefore
1677 required to cast the void pointer to underlying storage types. Alignment restrictions of user provided storage 
1678 are checked before accessing memory. Refer also to \ref MISRA_7.
1679
1680 This design decisions imply the following MISRA deviations:
1681  - [MISRA 2012 Rule      11.3,  required]: A cast shall not be performed between a pointer to object type and a pointer to a different object type
1682  - [MISRA 2012 Rule      11.5,  advisory]: A conversion should not be performed from pointer to void into pointer to object
1683
1684 All locations in the source code are marked with: 
1685 \code
1686   //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 6]
1687 \endcode 
1688
1689 Code example:
1690 \code
1691 static osTimerId_t svcRtxTimerNew (osTimerFunc_t func, osTimerType_t type, void *argument, const osTimerAttr_t *attr) {
1692   os_timer_t *timer;
1693     :
1694   if (attr != NULL) {
1695     :
1696     //lint -e{9079} "conversion from pointer to void to pointer to other type" [MISRA Note 6]
1697     timer = attr->cb_mem;
1698         :
1699 \endcode        
1700
1701 \section MISRA_7 [MISRA Note 7]: Check for proper pointer alignment
1702
1703 RTX5 verifies the alignment of user provided storage for object control blocks, stack, and data storage.
1704 Refer also to \ref MISRA_6 for more information.
1705
1706 This design decision implies the following MISRA deviations:
1707  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1708  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1709
1710 All locations in the source code are marked with: 
1711 \code
1712   //lint -e(923) -e(9078) "cast from pointer to unsigned int" [MISRA Note 7]
1713 \endcode
1714
1715 Code example:
1716 \code
1717 static osThreadId_t svcRtxThreadNew (osThreadFunc_t func, void *argument, const osThreadAttr_t *attr) {
1718     :
1719   void         *stack_mem;
1720     :
1721   if (stack_mem != NULL) {
1722     //lint -e(923) -e(9078) "cast from pointer to unsigned int" [MISRA Note 7]
1723     if ((((uint32_t)stack_mem & 7U) != 0U) || (stack_size == 0U)) {
1724     :
1725 \endcode        
1726
1727 \section MISRA_8 [MISRA Note 8]: Memory allocation management
1728
1729 RTX5 implements memory allocation functions which require pointer arithmetic to manage memory.
1730 The structure with the type \em mem_block_t that is used to menage memory allocation blocks is defined in \em rtx_memory.c
1731
1732 This design decision implies the following MISRA deviations:
1733  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1734  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1735
1736 All locations in the source code are marked with: 
1737 \code
1738   //lint -e(923) -e(9078) "cast from pointer to unsigned int" [MISRA Note 8]
1739 \endcode
1740
1741 The required pointer arithmetic is implemented in \em rtx_memory.c with the following function:
1742 \code
1743 __STATIC_INLINE mem_block_t *MemBlockPtr (void *mem, uint32_t offset) {
1744   uint32_t     addr;
1745   mem_block_t *ptr;
1746
1747   //lint --e{923} --e{9078} "cast between pointer and unsigned int" [MISRA Note 8]
1748   addr = (uint32_t)mem + offset;
1749   ptr  = (mem_block_t *)addr;
1750
1751   return ptr;
1752 }
1753 \endcode
1754
1755 \section MISRA_9 [MISRA Note 9]: Pointer conversions for register access
1756
1757 The CMSIS-Core peripheral register blocks are accessed using a structure. The memory address of this structure 
1758 is specified as unsigned integer number. Pointer conversions are required to access the specific registers.
1759
1760 This design decision implies the following MISRA deviations:
1761  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1762  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1763
1764 All locations in the source code are marked with: 
1765 \code
1766   //lint -emacro((923,9078),SCB) "cast from unsigned long to pointer" [MISRA Note 9]
1767 \endcode
1768
1769
1770 Code example:
1771 \code
1772 #define SCS_BASE  (0xE000E000UL)
1773 #define SCB      ((SCB_Type *)SCB_BASE)
1774 typedef struct {...} SCB_Type;
1775
1776 SCB->... = ...;
1777 \endcode
1778
1779 \section MISRA_10 [MISRA Note 10]: SVC calls use function-like macros
1780
1781 RTX5 is using SVC (Service Calls) to switch between thread mode (for user code execution) and handler mode (for RTOS kernel execution).
1782 The SVC function call mechanism is implemented with assembly instructions to construct the code for SVC.
1783 The source code uses C macros and are designed as C function-like macros to generate parameter passing
1784 for variables depending on macro parameters. An alternative replacement code would be complex.
1785 The C macros use multiple '##' operators however it has been verified that the order of evaluation is irrelevant 
1786 and result of macro expansion is always predictable.
1787
1788 This design decision implies the following MISRA deviations:
1789  - [MISRA 2012 Directive  4.9,  advisory]: A function should be used in preference to a function-like macro where yet are interchangeable
1790  - [MISRA 2012 Rule       1.3,  required]: There shall be no occurrence of undefined or critical unspecified behavior
1791  - [MISRA 2012 Rule      20.10, advisory]: The # and ## preprocessor operators should not be used
1792
1793 The relevant source code is in the file \em rtx_core_cm.h and is marked with: 
1794 \code
1795   //lint -save -e9023 -e9024 -e9026 "Function-like macros using '#/##'" [MISRA Note 10]
1796 \endcode
1797
1798
1799 \section MISRA_11 [MISRA Note 11]: SVC calls use assembly code
1800
1801 The SVC (Service Call) functions are constructed as a mix of C and inline assembly as it is required to access CPU registers
1802 for parameter passing. The function parameters are mapped to the CPU registers R0..R3 and SVC function number to 
1803 CPU register R12 (or R7). For assembly inter-working the function parameters are casted to unsigned int values.
1804
1805 The function return value after SVC call is mapped to the CPU register R0. Return value is casted from unsigned int 
1806 to the target value. 
1807
1808 It has been verified that this method has has no side-effects and is well defined.
1809
1810 This design decision implies the following MISRA deviations:
1811  - [MISRA 2012 Rule      10.3,  required]: Expression assigned to a narrower or different essential type
1812  - [MISRA 2012 Rule      10.5,  advisory]: Impermissible cast; cannot cast from 'essentially unsigned' to 'essentially enum\<i\>'
1813  - [MISRA 2012 Rule      11.1,  required]: Conversions shall not be performed between a pointer to a function and any other type
1814  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1815  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1816
1817 SVC functions are marked as library modules and not processed by PC-lint. The relevant source code is marked with: 
1818 \code
1819   //lint ++flb "Library Begin" [MISRA Note 11]
1820     :
1821   //lint --flb "Library End"
1822 \endcode
1823
1824 Code example:
1825 \code
1826 //  Service Calls definitions
1827 //lint ++flb "Library Begin" [MISRA Note 11]
1828 SVC0_1(Delay,      osStatus_t, uint32_t)
1829 SVC0_1(DelayUntil, osStatus_t, uint32_t)
1830 //lint --flb "Library End"
1831 \endcode
1832
1833 PC-lint does not process ASM input/output operand lists and therefore falsely identifies issues:
1834  - Last value assigned to variable not used
1835  - Symbol not subsequently referenced
1836 \todo: what has been done to mitigate that?
1837
1838
1839 \section MISRA_12 [MISRA Note 12]: Usage of exclusive access instructions
1840
1841 The RTX5 implementation uses the CPU instructions LDREX and STREX (when supported by the processor) to implement atomic operations.
1842 This atomic operations elimite the requirement for interrupt lock-outs. The atomic operations are implemented using 
1843 inline assembly.
1844
1845 PC-lint cannot process assembler instructions including the input/output operand lists and therefore falsely identifies issues:
1846  - Symbol not initialized
1847  - Symbol not subsequently referenced
1848  - Symbol not referenced
1849  - Pointer parameter could be declared as pointing to const
1850
1851 It has been verified that atomic operations have no side-effects and are well defined.
1852
1853 The functions that implement atomic instructions are marked as library modules and not processed by PC-lint. The relevant source code is marked with: 
1854 \code
1855   //lint ++flb "Library Begin" [MISRA Note 12]
1856     :
1857   //lint --flb "Library End"
1858 \endcode
1859
1860
1861 \section MISRA_13 [MISRA Note 13]: Usage of Event Recorder
1862
1863 The Event Recorder is a generic event logger and the related functions are called to record an event.
1864 The function parameters are 32-bit id, 32-bit values, pointer to void (data) and are recorded as 32-bit numbers.
1865 The parameters for the Event Recorder may require cast opertions to unsigned int which however has no side-effects 
1866 and is well defined. 
1867
1868 The return value indicates success or failure. There is no need to check the return value since no action is 
1869 taken when a Event Recorder function fail. The EventID macro (part of external Event Recorder) constructs the 
1870 ID based on input parameters which are shifted, masked with '&' and combined with '|'.
1871 Zero value input parameters are valid and cause zero used with '&' and '|'.
1872
1873 The usage of the Event Recorder implies the following MISRA deviations:
1874  - [MISRA 2012 Rule      11.1,  required]: Conversions shall not be performed between a pointer to a function and any other type
1875  - [MISRA 2012 Rule      11.4,  advisory]: A conversion should not be performed between a pointer to object and an integer type
1876  - [MISRA 2012 Rule      11.6,  required]: A cast shall not be performed between pointer to void and an arithmetic type
1877 In addition PC-Lint issues:
1878  - Info  835: A zero has been given as left argument to operator '&'
1879  - Info  845: The right argument to operator '|' is certain to be 0
1880
1881 The functions that call the Event Recorder are in the module \em rtx_evr.c and the related PC-Lint messages are disabled with:
1882 \code
1883   //lint -e923 -e9074 -e9078 -emacro((835,845),EventID) [MISRA Note 13]
1884 \endcode
1885
1886 */
1887
1888 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
1889 /**
1890 \page functionOverview Function Overview
1891
1892 CMSIS-RTOS2 provides multiple API interfaces:
1893   - \subpage rtos_api2 is the new C function interface that supports dynamic object creation \if ARMv8M and Armv8-M (Arm Cortex-M23,
1894     Cortex-M33 and Cortex-M35P) \endif.
1895   - <a class="el" href="../../RTOS/html/functionOverview.html">CMSIS-RTOS C API v1</a> is a C function API that is backward
1896     compatible with CMSIS-RTOS v1.
1897   - \subpage rtos_apicpp is a C++ class function API (future extension).
1898
1899 It is possible to intermix the different API variants in the same application and even in the same C/C++ source module.
1900 However, the functions of the <a class="el" href="../../RTOS/html/functionOverview.html">CMSIS-RTOS C API v1</a> may be deprecated in future versions of CMSIS-RTOS.
1901
1902 CMSIS-RTOS2 defines also a generic system timer interface that works across the supported Arm Cortex processors:
1903   - \subpage rtos_os_tick_api is the interface to a kernel system timer.
1904 */
1905
1906 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
1907 /**
1908 \page rtos_api2 CMSIS-RTOS C API v2
1909
1910 Overview of all CMSIS-RTOS C API v2 functions that are implemented in the \subpage cmsis_os2_h. 
1911
1912 \section rtos_api2_basics Common Design Concepts
1913
1914 All RTOS objects share a common design concept. The overall life-cycle of
1915 an object can be summarized as created -> in use -> destroyed.
1916
1917 <b>Create Objects</b>
1918
1919 An object is created by calling its `osXxxNew` function. The new function returns an identifier
1920 that can be used to operate with the new object. The actual state of an object is typically stored
1921 in an object specific control block. The memory layout (and size needed) for the control
1922 block is implementation specific. One should not make any specific assumptions about the control
1923 block. The control block layout might change and hence should be seen as an implementation
1924 internal detail.
1925
1926 In order to expose control about object specific options all `osXxxNew` functions provide an
1927 optional `attr` argument, which can be left as \token{NULL} by default. It takes a pointer to
1928 an object specific attribute structure, commonly containing the fields
1929  - `name` to attach a human readable name to the object for identification,
1930  - `attr_bits` to control object-specific options,
1931  - `cb_mem` to provide memory for the control block manually, and
1932  - `cb_size` to quantify the memory size provided for the control block.
1933
1934 The `name` attribute is only used for object identification, e.g. using RTOS-aware debugging. The
1935 attached string is not used for any other purposes internally.
1936
1937 The `cb_mem` and `cb_size` attributes can be used to provide memory for the control block manually
1938 instead of relying on the implementation internal memory allocation. One has to assure that the
1939 amount of memory pointed to by `cb_mem` is sufficient for the objects control block structure. If
1940 the size given as `cb_size` is not sufficient the `osXxxNew` function returns with an error, i.e.
1941 returning \token{NULL}. Furthermore providing control block memory manually is less portable. Thus
1942 one has to take care about implementation specific alignment and placement requirements for instance.
1943 Refer to \ref CMSIS_RTOS_MemoryMgmt for further details.
1944
1945 <b>Object Usage</b>
1946
1947 After an object has been created successfully it can be used until it is destroyed. The actions
1948 defined for an object depends on its type. Commonly all the `osXxxDoSomething` access function
1949 require the reference to the object to work with as the first `xxx_id` parameter.
1950
1951 The access function can be assumed to apply some sort of sanity checking on the id parameter. So
1952 that it is assured one cannot accidentally call an access function with a \token{NULL} object
1953 reference. Furthermore the concrete object type is verified, i.e. one cannot call access functions
1954 of one object type with a reference to another object type.
1955
1956 All further parameter checks applied are either object and action specific or may even be implementation
1957 specific. Thus one should always check action function return values for `osErrorParameter` to asure the
1958 provided arguments were accepted.
1959
1960 As a rule of thumb only non-blocking access function can be used from \ref CMSIS_RTOS_ISR_Calls "Interrupt Service Routines" (ISR).
1961 This incorporates `osXxxWait` functions (and similar) limited to be called with parameter `timeout`
1962 set to \token{0}, i.e. usage of try-semantics.
1963
1964 <b>Object Destruction</b>
1965
1966 Objects that are not needed anymore can be destructed on demand to free the control block memory. Objects
1967 are not destructed implicitly. Thus one can assume an object id to be valid until `osXxxDelete` is called
1968 explicitly. The delete function finally frees the control block memory. In case of user provided control
1969 block memory, see above, the memory must be freed manually as well. 
1970
1971 The only exception one has to take care of are Threads which do not have an explicit `osThreadDelete` function.
1972 Threads can either be `detached` or `joinable`. Detached threads are automatically destroyed on termination,
1973 i.e. call to \ref osThreadTerminate or \ref osThreadExit or return from thread function. On the other hand joinable
1974 threads are kept alive until one explicitly calls \ref osThreadJoin.
1975
1976 \section rtos_api2_functions Function Reference
1977
1978  - \ref CMSIS_RTOS_KernelCtrl
1979    - \ref osKernelGetInfo : \copybrief osKernelGetInfo
1980    - \ref osKernelGetState : \copybrief osKernelGetState
1981    - \ref osKernelGetSysTimerCount : \copybrief osKernelGetSysTimerCount
1982    - \ref osKernelGetSysTimerFreq : \copybrief osKernelGetSysTimerFreq
1983    - \ref osKernelInitialize : \copybrief osKernelInitialize
1984    - \ref osKernelLock : \copybrief osKernelLock
1985    - \ref osKernelUnlock : \copybrief osKernelUnlock
1986    - \ref osKernelRestoreLock : \copybrief osKernelRestoreLock
1987    - \ref osKernelResume : \copybrief osKernelResume
1988    - \ref osKernelStart : \copybrief osKernelStart
1989    - \ref osKernelSuspend : \copybrief osKernelSuspend
1990    - \ref osKernelGetTickCount : \copybrief osKernelGetTickCount
1991    - \ref osKernelGetTickFreq : \copybrief osKernelGetTickFreq
1992
1993  - \ref CMSIS_RTOS_ThreadMgmt
1994    - \ref osThreadDetach : \copybrief osThreadDetach
1995    - \ref osThreadEnumerate : \copybrief osThreadEnumerate
1996    - \ref osThreadExit : \copybrief osThreadExit
1997    - \ref osThreadGetCount : \copybrief osThreadGetCount
1998    - \ref osThreadGetId : \copybrief osThreadGetId
1999    - \ref osThreadGetName : \copybrief osThreadGetName
2000    - \ref osThreadGetPriority : \copybrief osThreadGetPriority
2001    - \ref osThreadGetStackSize : \copybrief osThreadGetStackSize
2002    - \ref osThreadGetStackSpace : \copybrief osThreadGetStackSpace
2003    - \ref osThreadGetState : \copybrief osThreadGetState
2004    - \ref osThreadJoin : \copybrief osThreadJoin
2005    - \ref osThreadNew : \copybrief osThreadNew
2006    - \ref osThreadResume : \copybrief osThreadResume
2007    - \ref osThreadSetPriority : \copybrief osThreadSetPriority
2008    - \ref osThreadSuspend : \copybrief osThreadSuspend
2009    - \ref osThreadTerminate : \copybrief osThreadTerminate
2010    - \ref osThreadYield : \copybrief osThreadYield
2011
2012  - \ref CMSIS_RTOS_ThreadFlagsMgmt
2013    - \ref osThreadFlagsSet : \copybrief osThreadFlagsSet
2014    - \ref osThreadFlagsClear : \copybrief osThreadFlagsClear
2015    - \ref osThreadFlagsGet : \copybrief osThreadFlagsGet
2016    - \ref osThreadFlagsWait : \copybrief osThreadFlagsWait
2017
2018  - \ref CMSIS_RTOS_EventFlags
2019    - \ref osEventFlagsGetName : \copybrief osEventFlagsGetName
2020    - \ref osEventFlagsNew : \copybrief osEventFlagsNew
2021    - \ref osEventFlagsDelete : \copybrief osEventFlagsDelete
2022    - \ref osEventFlagsSet : \copybrief osEventFlagsSet
2023    - \ref osEventFlagsClear : \copybrief osEventFlagsClear
2024    - \ref osEventFlagsGet : \copybrief osEventFlagsGet
2025    - \ref osEventFlagsWait : \copybrief osEventFlagsWait
2026
2027  - \ref CMSIS_RTOS_Wait
2028    - \ref osDelay : \copybrief osDelay
2029    - \ref osDelayUntil : \copybrief osDelayUntil
2030
2031  - \ref CMSIS_RTOS_TimerMgmt
2032    - \ref osTimerDelete : \copybrief osTimerDelete
2033    - \ref osTimerGetName : \copybrief osTimerGetName
2034    - \ref osTimerIsRunning : \copybrief osTimerIsRunning
2035    - \ref osTimerNew : \copybrief osTimerNew
2036    - \ref osTimerStart : \copybrief osTimerStart
2037    - \ref osTimerStop : \copybrief osTimerStop
2038
2039  - \ref CMSIS_RTOS_MutexMgmt
2040    - \ref osMutexAcquire : \copybrief osMutexAcquire
2041    - \ref osMutexDelete : \copybrief osMutexDelete
2042    - \ref osMutexGetName : \copybrief osMutexGetName
2043    - \ref osMutexGetOwner : \copybrief osMutexGetOwner
2044    - \ref osMutexNew : \copybrief osMutexNew
2045    - \ref osMutexRelease : \copybrief osMutexRelease
2046
2047  - \ref CMSIS_RTOS_SemaphoreMgmt
2048    - \ref osSemaphoreAcquire : \copybrief osSemaphoreAcquire
2049    - \ref osSemaphoreDelete : \copybrief osSemaphoreDelete
2050    - \ref osSemaphoreGetCount : \copybrief osSemaphoreGetCount
2051    - \ref osSemaphoreGetName : \copybrief osSemaphoreGetName
2052    - \ref osSemaphoreNew : \copybrief osSemaphoreNew
2053    - \ref osSemaphoreRelease : \copybrief osSemaphoreRelease
2054
2055  - \ref CMSIS_RTOS_PoolMgmt
2056    - \ref osMemoryPoolAlloc : \copybrief osMemoryPoolAlloc
2057    - \ref osMemoryPoolDelete : \copybrief osMemoryPoolDelete
2058    - \ref osMemoryPoolFree : \copybrief osMemoryPoolFree
2059    - \ref osMemoryPoolGetBlockSize : \copybrief osMemoryPoolGetBlockSize
2060    - \ref osMemoryPoolGetCapacity : \copybrief osMemoryPoolGetCapacity
2061    - \ref osMemoryPoolGetCount : \copybrief osMemoryPoolGetCount
2062    - \ref osMemoryPoolGetName : \copybrief osMemoryPoolGetName
2063    - \ref osMemoryPoolGetSpace : \copybrief osMemoryPoolGetSpace
2064    - \ref osMemoryPoolNew : \copybrief osMemoryPoolNew
2065
2066  - \ref CMSIS_RTOS_Message
2067    - \ref osMessageQueueDelete : \copybrief osMessageQueueDelete
2068    - \ref osMessageQueueGet : \copybrief osMessageQueueGet
2069    - \ref osMessageQueueGetCapacity : \copybrief osMessageQueueGetCapacity
2070    - \ref osMessageQueueGetCount : \copybrief osMessageQueueGetCount
2071    - \ref osMessageQueueGetMsgSize : \copybrief osMessageQueueGetMsgSize
2072    - \ref osMessageQueueGetName : \copybrief osMessageQueueGetName
2073    - \ref osMessageQueueGetSpace : \copybrief osMessageQueueGetSpace
2074    - \ref osMessageQueueNew : \copybrief osMessageQueueNew
2075    - \ref osMessageQueuePut : \copybrief osMessageQueuePut
2076    - \ref osMessageQueueReset : \copybrief osMessageQueueReset
2077  
2078 \todo restructure
2079  - \ref rtx5_specific
2080    - \ref osRtxErrorNotify : \copybrief osRtxErrorNotify
2081    - \ref osRtxIdleThread : \copybrief osRtxIdleThread
2082
2083 The following CMSIS-RTOS C API v2 functions can be called from threads and \ref CMSIS_RTOS_ISR_Calls "Interrupt Service Routines"
2084 (ISR):
2085    - \ref osKernelGetInfo, \ref osKernelGetState,
2086      \ref osKernelGetTickCount, \ref osKernelGetTickFreq, \ref osKernelGetSysTimerCount, \ref osKernelGetSysTimerFreq
2087    - \ref osThreadGetId, \ref osThreadFlagsSet
2088    - \ref osEventFlagsSet, \ref osEventFlagsClear, \ref osEventFlagsGet, \ref osEventFlagsWait
2089    - \ref osSemaphoreAcquire, \ref osSemaphoreRelease, \ref osSemaphoreGetCount
2090    - \ref osMemoryPoolAlloc, \ref osMemoryPoolFree, \ref osMemoryPoolGetCapacity, \ref osMemoryPoolGetBlockSize,
2091      \ref osMemoryPoolGetCount, \ref osMemoryPoolGetSpace
2092    - \ref osMessageQueuePut, \ref osMessageQueueGet, \ref osMessageQueueGetCapacity, \ref osMessageQueueGetMsgSize,
2093      \ref osMessageQueueGetCount, \ref osMessageQueueGetSpace
2094 */
2095
2096
2097 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
2098 /**
2099 \page rtos_apicpp CMSIS-RTOS C++ API
2100
2101 A C++11/C++14 interface is planned for the future.
2102 */
2103
2104 /*=======0=========1=========2=========3=========4=========5=========6=========7=========8=========9=========0=========1====*/
2105 /**
2106 \page rtos_os_tick_api OS Tick API
2107
2108 The CMSIS OS Tick API may be used by an RTOS implementation to be easily potable across the different Cortex-M and Cortex-A processors.
2109 It provides a generic interface to a kernel system tick timer and defines the following functions:
2110
2111  - The Reference for \ref CMSIS_RTOS_TickAPI provides details about these functions:
2112    - \ref OS_Tick_Setup : \copybrief OS_Tick_Setup
2113    - \ref OS_Tick_Enable : \copybrief OS_Tick_Enable
2114    - \ref OS_Tick_Disable : \copybrief OS_Tick_Disable
2115    - \ref OS_Tick_AcknowledgeIRQ : \copybrief OS_Tick_AcknowledgeIRQ
2116    - \ref OS_Tick_GetIRQn : \copybrief OS_Tick_GetIRQn
2117    - \ref OS_Tick_GetClock : \copybrief OS_Tick_GetClock
2118    - \ref OS_Tick_GetInterval : \copybrief OS_Tick_GetInterval
2119    - \ref OS_Tick_GetCount : \copybrief OS_Tick_GetCount
2120    - \ref OS_Tick_GetOverflow : \copybrief OS_Tick_GetOverflow
2121
2122 */
2123
2124
2125 /* ======================================================================================================================== */
2126 // Group creation for Reference 
2127 /* 
2128 \addtogroup CMSIS_RTOS1 CMSIS-RTOS API v1
2129 \brief This section describes the CMSIS-RTOS API v1. 
2130 \details 
2131 The CMSIS-RTOS is a generic API layer that interfaces to an existing RTOS kernel.
2132
2133 CMSIS-RTOS2 provides an translation layer for the
2134 <a class="el" href="../../RTOS/html/index.html">CMSIS-RTOS API v1</a> that simplifies migration.
2135
2136 Refer to the <a class="el" href="../../RTOS/html/modules.html">Reference</a> guide of the CMSIS-RTOS API v1 for details.
2137 */
2138
2139 // Group creation for Reference 
2140 /** 
2141 \addtogroup CMSIS_RTOS CMSIS-RTOS API v2
2142 \brief C interface of \ref rtos_api2 defined in cmsis_os2.h
2143 \details 
2144 The CMSIS-RTOS2 is a generic API layer that interfaces to an RTOS kernel.
2145
2146 The complete API interface is defined in the \ref cmsis_os2_h. When using dynamic memory allocation for objects, source code
2147 or libraries require no modifications when using on a different CMSIS-RTOS2 implementation.
2148
2149 Refer to \ref rtos_api2_basics for further details.
2150 */
2151
2152 /**
2153 \addtogroup CMSIS_RTOS_MemoryMgmt Memory Management
2154 \ingroup CMSIS_RTOS
2155 \brief Information about memory management possibilities
2156 \details
2157 The \ref CMSIS_RTOS offers two options for memory management the user can choose. For object storage one can either use
2158  - \ref CMSIS_RTOS_MemoryMgmt_Automatic (fully portable), or
2159  - \ref CMSIS_RTOS_MemoryMgmt_Manual (implementation specific).
2160  
2161 In order to affect the memory allocation scheme all RTOS objects that can be created on request, i.e. those having a `osXxxNew`
2162 function, accept an optional `osXxxAttr_t attr` argument on creation. As a rule of thumb the object attributes at least have
2163 members to assign custom control block memory, i.e. `cb_mem` and `cb_size` members. By default, i.e. `attr` is `NULL`
2164 or `cb_mem` is `NULL`, \ref CMSIS_RTOS_MemoryMgmt_Automatic is used. Providing a pointer to user memory in `cb_mem` switches
2165 to \ref CMSIS_RTOS_MemoryMgmt_Manual.
2166
2167 \note For detailed information about memory allocation strategies provided in RTX5 refer to \ref MemoryAllocation.
2168
2169 \section CMSIS_RTOS_MemoryMgmt_Automatic Automatic Dynamic Allocation
2170
2171 The automatic allocation is the default and viable for many use-cases. Moreover it is fully portable across different
2172 implementations of the \ref CMSIS_RTOS. The common drawback of dynamic memory allocation is the possibility of memory
2173 fragmentation and exhaustion. Given that all needed objects are created once upon system initialization and never
2174 deleted at runtime this class of runtime failures can be prevented, though.
2175
2176 The actual allocation strategy used is implementation specific, i.e. whether global heap or preallocated memory pools are used.
2177
2178 <b> Code Example:</b> 
2179 \code{.c}
2180 #include "cmsis_os2.h"                          // implementation agnostic
2181   
2182 osMutexId_t mutex_id;
2183 osMutexId_t mutex2_id;
2184   
2185 const osMutexAttr_t Thread_Mutex_attr = {
2186   "myThreadMutex",                              // human readable mutex name
2187   osMutexRecursive | osMutexPrioInherit,        // attr_bits
2188   NULL,                                         // memory for control block (default)
2189   0U                                            // size for control block (default)
2190 };
2191   
2192 void CreateMutex (void)  {
2193   mutex_id = osMutexNew(NULL);                  // use default values for all attributes
2194   mutex2_id = osMutexNew(&Thread_Mutex_attr);   // use attributes from defined structure
2195   :
2196 }
2197 \endcode
2198
2199 The Mutexes in this example are created using automatic memory allocation.
2200
2201 \section CMSIS_RTOS_MemoryMgmt_Manual Manual User-defined Allocation
2202
2203 One can get fine grained control over memory allocation by providing user-defined memory.
2204 The actual requirements such user-defined memory are implementation specific. Thus one
2205 needs to carefully refer to the size and alignment rules of the implementation used, e.g.
2206 for RTX see \ref StaticObjectMemory.
2207
2208 <b> Code Example:</b> 
2209 \code{.c}
2210 #include "rtx_os.h"                             // implementation specific
2211   
2212 osMutexId_t mutex_id;
2213   
2214 static uint32_t mutex_cb[osRtxMutexCbSize/4U];  // implementation specific
2215   
2216 const osMutexAttr_t Thread_Mutex_attr = {
2217   "myThreadMutex",                              // human readable mutex name
2218   osMutexRecursive | osMutexPrioInherit,        // attr_bits
2219   mutex_cb,                                     // memory for control block (user-defined)
2220   sizeof(mutex_cb)                              // size for control block (user-defined)
2221 };
2222   
2223 void CreateMutex (void)  {
2224   mutex_id = osMutexNew(&Thread_Mutex_attr);    // use attributes from defined structure
2225   :
2226 }
2227 \endcode
2228
2229 The above example uses user-defined memory for the mutex control block. Depending on the actual
2230 implementation used one needs to include the specific header file, `rtx_os.h` in this case.
2231
2232 */
2233
2234 // Group creation for Reference 
2235 /** 
2236 \addtogroup CMSIS_RTOS CMSIS-RTOS API v2
2237 \brief C interface of \ref rtos_api2 defined in <b>%cmsis_os2.h</b>
2238 \details 
2239 The CMSIS-RTOS2 is a generic API layer that interfaces to an RTOS kernel.
2240
2241 The complete API interface is defined in the \ref cmsis_os2_h. When using dynamic memory allocation for objects, source code
2242 or libraries require no modifications when using on a different CMSIS-RTOS2 implementation.
2243
2244 Refer to \ref rtos_api2_basics for further details.
2245 */
2246