sys_arch_opts.h

来自「AMLOGIC DPF source code」· C头文件 代码 · 共 58 行

H
58
字号
/*******************************************************************
 * 
 *  Copyright C 2005 by Amlogic, Inc. All Rights Reserved.
 *
 *  Description: 
 *
 *  Author: Amlogic Software
 *  Created: Fri Nov 11 00:39:33 2005
 *
 *******************************************************************/
/**************************************************************************
*                                                                         *
*   PROJECT     : uCOS_LWIP (uC/OS LwIP port)                             *
*                                                                         *
*   MODULE      : SYS_ARCH_OPTS.h                                         *
*                                                                         *
*   AUTHOR      : Michael Anburaj                                         *
*                 URL  : http://geocities.com/michaelanburaj/             *
*                 EMAIL: michaelanburaj@hotmail.com                       *
*                                                                         *
*   PROCESSOR   : Any                                                     *
*                                                                         *
*   TOOL-CHAIN  : Any                                                     *
*                                                                         *
*   DESCRIPTION :                                                         *
*   Module configuration for sys_arch.                                    *
*                                                                         *
**************************************************************************/


#ifndef __SYS_ARCH_OPTS_H__
#define __SYS_ARCH_OPTS_H__


/* ********************************************************************* */
/* Module configuration */

#define LWIP_MAX_TASKS  4           /* Number of LwIP tasks */
#define LWIP_STACK_SIZE 1024*10     /* Stack size for LwIP tasks */
/* Note: 
   Task priorities, LWIP_START_PRIO through (LWIP_START_PRIO+LWIP_MAX_TASKS-1) must be reserved
   for LwIP and must not used by other applications outside. */

#define LWIP_Q_SIZE 10              /* LwIP queue size */
#define LWIP_MAX_QS 20              /* Max. LwIP queues */


/* ********************************************************************* */
/* Interface macro & data definition */


/* ********************************************************************* */
/* Interface function definition */


#endif /* __SYS_ARCH_OPTS_H__ */

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?