109 lines
4.4 KiB
C
109 lines
4.4 KiB
C
|
|
/*
|
||
|
|
*********************************************************************************************************
|
||
|
|
* 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.
|
||
|
|
*********************************************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
/*
|
||
|
|
*********************************************************************************************************
|
||
|
|
*
|
||
|
|
* APPLICATION CONFIGURATION
|
||
|
|
*
|
||
|
|
* Texas Instruments TM4C129x
|
||
|
|
* on the
|
||
|
|
*
|
||
|
|
* DK-TM4C129X
|
||
|
|
* Development Kit
|
||
|
|
*
|
||
|
|
* Filename : app_cfg.h
|
||
|
|
* Version : V1.00
|
||
|
|
* Programmer(s) : FT
|
||
|
|
*********************************************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
#ifndef APP_CFG_MODULE_PRESENT
|
||
|
|
#define APP_CFG_MODULE_PRESENT
|
||
|
|
|
||
|
|
/*
|
||
|
|
*********************************************************************************************************
|
||
|
|
* MODULE ENABLE / DISABLE
|
||
|
|
*********************************************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
|
||
|
|
/*
|
||
|
|
*********************************************************************************************************
|
||
|
|
* TASK PRIORITIES
|
||
|
|
*********************************************************************************************************
|
||
|
|
*/
|
||
|
|
|
||
|
|
#define APP_TASK_START_PRIO 2
|
||
|
|
#define APP_CFG_TASK_START_PRIO 4
|
||
|
|
// 5属于tcpip_thread
|
||
|
|
#define RTC_TASK_PRIO 6
|
||
|
|
#define CLIENT_TASK_PRIO 8
|
||
|
|
#define SERVER_TASK_PRIO 9
|
||
|
|
#define FATFS_TASK_PRIO 7
|
||
|
|
#define UART_TASK_PRIO 10
|
||
|
|
|
||
|
|
|
||
|
|
#define OS_TASK_TMR_PRIO (OS_LOWEST_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
|
||
|
|
#define RTC_TASK_STK_SIZE 256u
|
||
|
|
#define UART_TASK_STK_SIZE 256u
|
||
|
|
#define CLIENT_TASK_STK_SIZE 512u
|
||
|
|
#define SERVER_TASK_STK_SIZE 512u
|
||
|
|
#define FATFS_TASK_STK_SIZE 1024u
|
||
|
|
/*
|
||
|
|
*********************************************************************************************************
|
||
|
|
* 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
|