Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Published by Scroll Versions from this space and version 3.06.00

...

\Micrium
    \Software
        \uCOS-III
            \Cfg\Template
                \os_app_hooks.c
                \os_cfg.h
                \os_cfg_app.h
            \Source
                \os_cfg_app.ch
                \os_cfg_coreapp.c
                \os_dbgcore.c
                \os_flagdbg.c
                \os_intflag.c
                \os_mem.c
                \os_msgmon.c
                \os_mutexmsg.c
                \os_pend_multimutex.c
                \os_prio.c
                \os_q.c
                \os_sem.c
                \os_stat.c
                \os_task.c
                \os_tick.c
                \os_time.c
                \os_tmr.c
                \OSos_VARtrace.h
                \os_type.h
                \os_typevar.hc
            \TLS
                \<tool>
                    \os_tls.c
            \Trace
                \<tool>
                    \Cfg
                        \Template
                            \*.h
                    \Source  
                        \os_trace_events.h
                    \ThirdPartyLibrary  
                        \*.*                      

\Micrium

Contains all software components and projects provided by Micriµm.

...

The directory containing the CPU-independent source code for µC/OS-III. All files in this directory should be included in the build. Features that are not required will be compiled out based on the value of #define constants in os_cfg.h and os_cfg_app.h.

os.h contains the main µC/OS-III header file, which declares constants, macros, µC/OS-III global variables (for use by µC/OS-III only), function prototypes, and more.

os_cfg_app.c declares variables and arrays based on the values in os_cfg_app.h.

...

os_flag.c contains the code for event flag management. See Synchronization for details about event flags.

os_intmem.c contains code for the interrupt handler task, which is used when OS_CFG_ISR_POST_DEFERRED_EN (see os_cfg.h) is set to DEF_ENABLED. See Interrupt Management for details regarding the interrupt handler taskµC/OS-III fixed-size memory manager, see Memory Management API Changes.

os_memmon.c contains code for the that manages 'Monitors' in µC/OS-III fixed-size memory manager, see Memory Management API Changes Monitors.

os_msg.c contains code to handle messages. µC/OS-III provides message queues and task specific message queues. os_msg.c provides common code for these two services. See Message Passing.

os_mutex.c contains code to manage mutual exclusion semaphores, see Resource Management.

os_pend_multi.c contains the code to allow code to pend on multiple semaphores or message queues. This is described in Pending On Multiple Objects.os_prio.c contains the code to manage the bitmap table used to keep track of which tasks are ready-to-run, see The Ready List. This file can be replaced by an assembly language equivalent to improve performance if the CPU used provides bit set, clear and test instructions, and a count leading zeros instruction.

...

os_tmr.c contains code to manage software timers. See Timer Management.

os_vartrace.c contains the µC/OS-III global variables. These variables are for µC/OS-III to manage and should not be accessed by application code.os.h contains the main µC/OS-III header file, which declares constants, macros, µC/OS-III global variables (for use by µC/OS-III only), function prototypes, and moreh contains code to define the default trace macros. See Trace.

os_type.h contains declarations of µC/OS-III data types that can be changed by the port designer to make better use of the CPU architecture. In this case, the file would typically be copied to the port directory and then modified. See Appendix B, “µC/OS-III Configuration Manual”.

os_var.c contains the µC/OS-III global variables. These variables are for µC/OS-III to manage and should not be accessed by application code.

\TLS\<tool>

The directory containing the compiler interface functions that allow library functions to be thread safe. If this feature is not required then you can omit the files in this directory.

os_tls.c provides the compiler specific thread safe interface functions for the specific <tool>.  Note that the brackets are not included.

\Trace\<tool>\Cfg\Template\*.h

The directory containing the configuration template files to configure the third-party tool code of choice to record the µC/OS-III trace. If this feature is not required then you can omit the entire \Trace directory.

\Trace\<tool>\Source\os_trace_events.h

This file provides the interface between the trace macros called throughout µC/OS-III and the actual functions that record such events depending on your trace recorder tool of choice. If this feature is not required then you can omit the entire \Trace directory.

\Trace\<tool>\ThirdPartyLibrary\*.*

The directory containing the third-party tool code of choice to record the µC/OS-III trace. If this feature is not required then you can omit the entire \Trace directory.