| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- /*##########################################################################*/
- /*! @dir include
- @brief Platform-independent QP™/C API
- @attention
- The QP™/C <span class="img folder">include</span> directory needs to be added to the compiler's include path in the applications using QP™/C.
- */
- /*##########################################################################*/
- /*! @dir src
- @brief Platform-independent QP™/C source code
- Files from this directory need to be added to the project, to build the QP™/C framework from source code.
- @attention
- The QP™/C <span class="img folder">src</span> directory needs to be added to the compiler's include path in the applications that build QP™/C framework from sources (as opposed to using QP as a pre-built library).
- */
- /*##########################################################################*/
- /*! @dir src/qf
- @brief Platform-independent implementation of the QEP and QF components.
- @note
- Typically, files in this directory need to be added to the application build, but some QP ports might not need all the files in this directory. For example, a QP port to a 3rd-party RTOS kernel might be using a message queue of the RTOS instead of the native QP event queue, in which case the file qf_actq.c would not be needed and should be excluded from the build.
- */
- /*##########################################################################*/
- /*! @dir src/qv
- @brief Platform-independent implementation of the @ref srs_qv built-in kernel.
- @attention
- Files in this directory need to be included in the QP application build only if the application uses the @ref srs_qv kernel.
- */
- /*##########################################################################*/
- /*! @dir src/qk
- @brief Platform-independent implementation of the @ref srs_qk built-in kernel.
- @attention
- Files in this directory need to be included in the QP application build only if the application uses the @ref srs_qk kernel.
- */
- /*##########################################################################*/
- /*! @dir src/qxk
- @brief Platform-independent implementation of the @ref srs_qxk built-in kernel.
- @attention
- Files in this directory need to be included in the QP application build only if the application uses the @ref srs_qxk kernel.
- */
- /*##########################################################################*/
- /*! @dir src/qs
- @brief Platform-independent implementation of the QS component (software tracing).
- */
|