mirror of
https://github.com/QuantumLeaps/qpc.git
synced 2025-01-14 06:43:19 +08:00
92 lines
3.8 KiB
C
92 lines
3.8 KiB
C
|
/*============================================================================
|
||
|
*
|
||
|
* The uCOS-II application configuration isn't really relevant for porting QP,
|
||
|
* but the uCOS-II master include file ucos_ii.h with the uCOS-II API includes
|
||
|
* app_cfg.h. So, this application configuration file is a dummy to
|
||
|
* successfully include the uCOS-II API, but a different application
|
||
|
* configuration needs to be provided when the uCOS-II code is actually
|
||
|
* compiled to build an application.
|
||
|
*
|
||
|
* Quantum Leaps, LLC. www.state-machine.com
|
||
|
* 2015-03-22
|
||
|
*===========================================================================*/
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* EXAMPLE CODE
|
||
|
*
|
||
|
* This file is provided as an example on how to use Micrium products.
|
||
|
*
|
||
|
* Please feel free to use any application code labeled as 'EXAMPLE CODE' in
|
||
|
* your application products. Example code may be used as is, in whole or in
|
||
|
* part, or may be used as a reference only. This file can be modified as
|
||
|
* required to meet the end-product requirements.
|
||
|
*
|
||
|
* Please help us continue to provide the Embedded community with the finest
|
||
|
* software available. Your honesty is greatly appreciated.
|
||
|
*
|
||
|
* You can find our product's user manual, API reference, release notes and
|
||
|
* more information at https://doc.micrium.com.
|
||
|
* You can contact us at www.micrium.com.
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef APP_CFG_MODULE_PRESENT
|
||
|
#define APP_CFG_MODULE_PRESENT
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* MODULE ENABLE / DISABLE
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* TASK PRIORITIES
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#define APP_CFG_TASK_START_PRIO 2u
|
||
|
|
||
|
#define OS_TASK_TMR_PRIO (OS_LOWEST_PRIO - 2u)
|
||
|
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* TASK STACK SIZES
|
||
|
* Size of the task stacks (# of OS_STK entries)
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#define APP_CFG_TASK_START_STK_SIZE 256u
|
||
|
|
||
|
|
||
|
/*
|
||
|
*********************************************************************************************************
|
||
|
* TRACE / DEBUG CONFIGURATION
|
||
|
*********************************************************************************************************
|
||
|
*/
|
||
|
|
||
|
#ifndef TRACE_LEVEL_OFF
|
||
|
#define TRACE_LEVEL_OFF 0
|
||
|
#endif
|
||
|
|
||
|
#ifndef TRACE_LEVEL_INFO
|
||
|
#define TRACE_LEVEL_INFO 1
|
||
|
#endif
|
||
|
|
||
|
#ifndef TRACE_LEVEL_DBG
|
||
|
#define TRACE_LEVEL_DBG 2
|
||
|
#endif
|
||
|
|
||
|
#define APP_TRACE_LEVEL TRACE_LEVEL_OFF
|
||
|
#define APP_TRACE printf
|
||
|
|
||
|
#define IPERF_TRACE_LEVEL TRACE_LEVEL_OFF
|
||
|
#define IPERF_TRACE printf
|
||
|
|
||
|
#define APP_TRACE_INFO(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_INFO) ? (void)(APP_TRACE x) : (void)0)
|
||
|
#define APP_TRACE_DBG(x) ((APP_TRACE_LEVEL >= TRACE_LEVEL_DBG) ? (void)(APP_TRACE x) : (void)0)
|
||
|
|
||
|
#endif
|