📄 taskparm.h
字号:
/****************************************************************************/
/* TEXAS INSTRUMENTS PROPRIETARY INFORMATION */
/* */
/* (c) Copyright, Texas Instruments Incorporated, 2006. */
/* All Rights Reserved. */
/* */
/* Property of Texas Instruments Incorporated. Restricted Rights - */
/* Use, duplication, or disclosure is subject to restrictions set */
/* forth in TI's program license agreement and associated documentation. */
/****************************************************************************/
/****************************************************************************/
/* taskParm.h */
/* */
/* Task startup parameters. */
/****************************************************************************/
#ifndef __TASKPARM_H
#define __TASKPARM_H
#define ID_INVALID 0xFFFFFFFF
/****************************************************/
/* Task priority. */
/****************************************************/
#define PRIORITY_SYSINIT 1
#define PRIORITY_DDCCI 10
#define PRIORITY_POLLTASK 12
#define PRIORITY_EEPROM 14
#define PRIORITY_SYSMON 16
#define PRIORITY_USB 18
#define PRIORITY_GUITASK 20
#define PRIORITY_DATAPATH 22
#define PRIORITY_IRREMOTE 24
#define PRIORITY_COMMAND 26
#define PRIORITY_RFC 28
/****************************************************/
/* Task stack size. */
/****************************************************/
#define STACK_SYSMON 896
#define STACK_POLLTASK 640
#define STACK_IRREMOTE 640
#define STACK_GUITASK 2048
#define STACK_DATAPATH 2048
#define STACK_COMMAND 1536
#define STACK_RFC 1024
#define STACK_USB 576
#define STACK_DDCCI 768
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -