亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? configall.h

?? 440bx vxworks bsp
?? H
?? 第 1 頁 / 共 4 頁
字號:
#define WDB_STACK_SIZE	 	0x1000	/* size of WDB agents stack, in bytes */
#define ISR_STACK_SIZE          1000    /* size of ISR stack, in bytes */
#define TRAP_DEBUG              0       /* not used */
#define VEC_BASE_ADRS           ((char *) LOCAL_MEM_LOCAL_ADRS)
#endif  /* CPU_FAMILY==I80X86 */

#if	CPU_FAMILY==AM29XXX
#define INT_LOCK_LEVEL  	0x0001	/* 29k all interrupts disable mask */
#define ROOT_STACK_SIZE		10000	/* size of root's stack, in bytes */
#define SHELL_STACK_SIZE	40000	/* size of shell's stack, in bytes */
#define WDB_STACK_SIZE	 	0x2000	/* size of WDB agents stack, in bytes */
#define ISR_STACK_SIZE		10000	/* size of ISR stack, in bytes */
#define TRAP_DEBUG		15	/* trap 2 - breakpoint trap */
#define VEC_BASE_ADRS           ((char *) LOCAL_MEM_LOCAL_ADRS)
#endif	/* CPU_FAMILY==AM29XXX */

#if	CPU_FAMILY==SH
#define	INT_LOCK_LEVEL		15
#define	ROOT_STACK_SIZE		10000
#define	SHELL_STACK_SIZE	10000	/* size of shell's stack, in bytes */
#define WDB_STACK_SIZE	 	0x1000	/* size of WDB agents stack, in bytes */
#define	ISR_STACK_SIZE		1000
#define	VEC_BASE_ADRS		((char *) LOCAL_MEM_LOCAL_ADRS)
#endif	/* CPU_FAMILY==SH */

#if     CPU_FAMILY==ARM
#define INT_LOCK_LEVEL          0       /* interrupt disable mask - unused */
#define ROOT_STACK_SIZE         0x4000  /* size of root's stack, in bytes */
#define SHELL_STACK_SIZE        0x10000 /* size of shell's stack, in bytes */
#define WDB_STACK_SIZE          0x2000  /* size of WDB agents stack, in bytes */
#define TRAP_DEBUG              0       /* not used */
#define VEC_BASE_ADRS           ((char *) LOCAL_MEM_LOCAL_ADRS)
/*
 * NOTE: ISR_STACK_SIZE defined in config.h, not here - BSP interrupt
 * 	 structure dependent
 */
#endif  /* CPU_FAMILY==ARM */

#ifndef BOOT_CMD_STACK_SIZE
#define BOOT_CMD_STACK_SIZE	7000
#endif  /* BOOT_CMD_STACK_SIZE */

/* WDB debug agent configuration */

#ifdef  INCLUDE_WDB

/* optional agent facilities */

#define INCLUDE_WDB_BANNER		/* print banner after agent starts */
#define INCLUDE_WDB_VIO			/* virtual I/O support */
#define	INCLUDE_WDB_TTY_TEST		/* test serial line communcation */
#define INCLUDE_WDB_START_NOTIFY	/* notify the host of task creation */
#define INCLUDE_WDB_USER_EVENT		/* user events handling */

/* core agent facilities - do not remove */

#define INCLUDE_WDB_CTXT		/* context control */
#define INCLUDE_WDB_FUNC_CALL		/* spawn function as separate task */
#define INCLUDE_WDB_DIRECT_CALL		/* call function in agents context */
#define INCLUDE_WDB_EVENTS		/* host async event notification */
#define INCLUDE_WDB_GOPHER		/* gopher info gathering */
#define INCLUDE_WDB_BP			/* breakpoint support */
#define INCLUDE_WDB_EXC_NOTIFY		/* notify host of exceptions */
#define INCLUDE_WDB_EXIT_NOTIFY		/* notify the host of task exit */
#define INCLUDE_WDB_REG			/* get/set hardware registers */
#define INCLUDE_WDB_EVENTPOINTS		/* eventpoints handling */
#define INCLUDE_WDB_MEM			/* optional memory services */

/* agent mode */

#define WDB_MODE        WDB_MODE_DUAL	/* WDB_MODE_[DUAL|TASK|EXTERN] */

/* agent communication paths */

#define WDB_COMM_NETWORK 	0	/* vxWorks network	- task mode */
#define WDB_COMM_SERIAL		1	/* raw serial		- bimodal   */
#define WDB_COMM_TYCODRV_5_2	2	/* older serial driver	- task mode */
#define WDB_COMM_ULIP		3	/* vxSim packet device	- bimodal   */
#define WDB_COMM_NETROM		4	/* netrom packet device	- bimodal   */
#define WDB_COMM_CUSTOM		5	/* custom packet device	- bimodal   */
#define WDB_COMM_END		6	/* END packet device 	- bimodal */
#define WDB_COMM_PIPE           7       /* vxSim pipe device    - bimodal   */
#define WDB_COMM_VTMD           8       /* TMD packet device    - bimodal   */

/* communication path configuration */

#ifndef WDB_COMM_TYPE
#define WDB_COMM_TYPE WDB_COMM_END	/* default path is the network */
#endif

#ifndef WDB_TTY_CHANNEL
#define WDB_TTY_CHANNEL		1	/* default Sio SERIAL channel */
#endif

#ifndef WDB_TTY_DEV_NAME
#define WDB_TTY_DEV_NAME    "/tyCo/1"	/* default TYCODRV_5_2 device name */
#endif

#ifndef WDB_TTY_BAUD
#define WDB_TTY_BAUD		9600	/* default baud rate */
#endif

#ifndef WDB_ULIP_DEV
#define WDB_ULIP_DEV    "/dev/ulip14"	/* default ULIP packet device */
#endif

#define	WDB_NETROM_TYPE		400	/* default is old 400 series */
#define	WDB_NETROM_WIDTH	1	/* width of a ROM word. This macro
					 * is not used for the 500 series. */
#define WDB_NETROM_INDEX	0	/* index into word of pod zero */
#define	WDB_NETROM_NUM_ACCESS	1	/* of pod zero per byte read */
#define	WDB_NETROM_ROMSIZE	ROM_SIZE /* size of a single ROM. If your
					 * board has N ROMs, this definition
					 * must be divided by N to be right */
#define WDB_NETROM_POLL_DELAY	2	/* # clock ticks to poll for input */

/* miscelaneous agent constants */

#define WDB_MTU         	1500	/* max RPC message size */
#define WDB_POOL_SIZE 		((sysMemTop() - FREE_RAM_ADRS)/16) /* memory pool for host tools */
#define WDB_SPAWN_STACK_SIZE	0x5000	/* default stack size of spawned task */

#endif  /* INCLUDE_WDB */


/******************************************************************************/
/*                                                                            */
/*                   "GENERIC" BOARD CONFIGURATION                            */
/*                                                                            */
/******************************************************************************/

/* device controller I/O addresses when included */

#define IO_ADRS_EI      ((char *) 0x000fff00)   /* 32A,32D i82596CA Ethernet */


/******************************************************************************/
/*                                                                            */
/*                   "MISCELLANEOUS" CONSTANTS                                */
/*                                                                            */
/******************************************************************************/

/* shared memory objects parameters (unbundled) */

#define SM_OBJ_MAX_TASK		40	/* max # of tasks using smObj */
#define SM_OBJ_MAX_SEM		60	/* max # of shared semaphores */
#define SM_OBJ_MAX_MSG_Q	10	/* max # of shared message queues */
#define SM_OBJ_MAX_MEM_PART	4	/* max # of shared memory partitions */
#define SM_OBJ_MAX_NAME		100	/* max # of shared objects names */
#define SM_OBJ_MAX_TRIES	5000	/* max # of tries to obtain lock */

/* shared memory network parameters  - defaults to values DEFAULT_PKTS_SIZE
 * and DEFAULT_CPUS_MAX in smPktLib.h respectively
 */

#define SM_PKTS_SIZE            0       /* shared memory packet size */
#define SM_CPUS_MAX             0       /* max # of cpus for shared network */

/* low memory layout */

#if     (CPU_FAMILY == I80X86)
#define GDT_BASE_OFFSET         0x1000
#define SM_ANCHOR_OFFSET        0x1100
#define BOOT_LINE_OFFSET        0x1200
#define EXC_MSG_OFFSET          0x1300
#elif   (CPU_FAMILY == PPC)
#define SM_ANCHOR_OFFSET        0x4100
#define BOOT_LINE_OFFSET        0x4200
#define EXC_MSG_OFFSET          0x4300
#elif	(CPU==SH7750 || CPU==SH7729 || CPU==SH7700)
#define SM_ANCHOR_OFFSET        0x1600	/* not used for SDRAM config. */
#define BOOT_LINE_OFFSET        0x1700
#define EXC_MSG_OFFSET          0x1800
#else
#define SM_ANCHOR_OFFSET        0x600
#define BOOT_LINE_OFFSET        0x700
#define EXC_MSG_OFFSET          0x800
#endif  /* (CPU_FAMILY == I80X86) */

/* The backplane driver onboard anchor at the following address */

#define SM_ANCHOR_ADRS	((char *) (LOCAL_MEM_LOCAL_ADRS+SM_ANCHOR_OFFSET))


/* The bootroms put the boot line at the following address */

#define BOOT_LINE_ADRS	((char *) (LOCAL_MEM_LOCAL_ADRS+BOOT_LINE_OFFSET))
#define	BOOT_LINE_SIZE	255	/* use 255 bytes for bootline */

/* The boot line is stored in non-volatile RAM at the following offset */

#define	NV_BOOT_OFFSET	0	/* store the boot line at start of NVRAM */


/* Messages from exceptions during exceptions go at the following address */

#define EXC_MSG_ADRS	((char *) (LOCAL_MEM_LOCAL_ADRS+EXC_MSG_OFFSET))


/* Backplane H/W support */

#define	SM_TAS_TYPE	SM_TAS_HARD	/* hardware supports test-and-set */


/* Resident ROMs constants */

#if     ((CPU_FAMILY==I960) || (CPU_FAMILY==ARM))
#define STACK_SAVE      512     	/* maximum stack used to preserve */
#else	/* sparc or others */
#if	((CPU_FAMILY==SPARC) || (CPU_FAMILY==PPC))
#define	STACK_SAVE	0x1000
#else	/* all other architecutes */
#define STACK_SAVE      0x40    	/* maximum stack used to preserve */
#endif					/* mips cpp no elif */
#endif

#if     (CPU_FAMILY==SPARC)
#define RESERVED        0x2000		/* vector table base plus table size */
#else	/* 68000 or others */
#if	(CPU==MC68000)
#define RESERVED	0x400		/* avoid zeroing MC68302 vector table */
#else
#if	(CPU_FAMILY == PPC)
#define RESERVED	0x4400		/* avoid zeroing EXC_MSG */
#else	/* all other architectures */
#define RESERVED        0
#endif
#endif					/* mips cpp no elif */
#endif

#if     ((CPU_FAMILY == MIPS) || (CPU_FAMILY == PPC))
#define	STACK_RESIDENT	RAM_DST_ADRS
#else
#define	STACK_RESIDENT	_sdata
#endif

#if	(_STACK_DIR == _STACK_GROWS_DOWN)

#ifdef	ROM_RESIDENT
#define STACK_ADRS	STACK_RESIDENT
#else
#define STACK_ADRS	_romInit
#endif	/* ROM_RESIDENT */

#else	/* _STACK_DIR == _STACK_GROWS_UP */

#ifdef	ROM_RESIDENT
#define STACK_ADRS	(STACK_RESIDENT-STACK_SAVE)
#else
#define STACK_ADRS	(_romInit-STACK_SAVE)
#endif	/*  ROM_RESIDENT */

#endif	/* _STACK_DIR == _STACK_GROWS_UP */


/* Default Boot Parameters */

#define HOST_NAME_DEFAULT	"bootHost"	/* host name */
#define TARGET_NAME_DEFAULT	"vxTarget"	/* target name (tn) */
#define HOST_USER_DEFAULT	"target"	/* user (u) */
#define HOST_PASSWORD_DEFAULT	""		/* password */
#define SCRIPT_DEFAULT		""	 	/* startup script (s) */
#define OTHER_DEFAULT		"" 		/* other (o) */


/* Login security initial user name and password.
 * Use vxencrypt on host to find encrypted password.
 * Default password provided here is "password".
 */

#ifdef	INCLUDE_SECURITY
#define LOGIN_USER_NAME		"target"
#define LOGIN_PASSWORD		"RcQbRbzRyc"	/* "password" */
#endif	/* INCLUDE_SECURITY */


/* install environment variable task create/delete hooks */

#ifdef  INCLUDE_ENV_VARS

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
日韩一本二本av| 亚洲自拍偷拍av| 精品粉嫩超白一线天av| 日韩一区二区三区四区| 欧美日韩精品福利| 欧美日韩久久久久久| 欧美视频在线一区| 欧美乱熟臀69xxxxxx| 欧美日韩你懂得| 91麻豆精品91久久久久久清纯 | 国产成人自拍网| 九九久久精品视频| 激情欧美日韩一区二区| 国产精品综合av一区二区国产馆| 久久69国产一区二区蜜臀| 九一九一国产精品| 国产精品1024| www.欧美亚洲| 欧美在线一区二区| 欧美高清一级片在线| 欧美大片顶级少妇| 国产亚洲短视频| 亚洲私人黄色宅男| 亚洲国产视频网站| 蜜桃免费网站一区二区三区| 国产成人综合在线播放| 99re热这里只有精品视频| 91麻豆成人久久精品二区三区| 欧洲一区二区av| 91精品国产色综合久久不卡蜜臀| 久久综合网色—综合色88| 欧美精品一区二区不卡 | 丝袜美腿亚洲一区二区图片| 性做久久久久久免费观看| 日韩在线一二三区| 精品一区二区在线播放| 99久久精品国产导航| 欧美日韩大陆在线| 久久久蜜桃精品| 亚洲欧美激情视频在线观看一区二区三区| 亚洲一区二区三区在线| 激情五月婷婷综合网| av电影天堂一区二区在线| 色吧成人激情小说| 日韩欧美国产wwwww| 国产精品国产三级国产普通话99| 一区二区三区小说| 日本不卡的三区四区五区| 丰满放荡岳乱妇91ww| 欧美性生活影院| 国产午夜精品一区二区三区视频 | 精品va天堂亚洲国产| 亚洲人成亚洲人成在线观看图片| 首页综合国产亚洲丝袜| 成人av资源网站| 91精品欧美综合在线观看最新| 国产色产综合色产在线视频| 午夜影院久久久| caoporn国产一区二区| 91精品国产黑色紧身裤美女| 国产精品久久久久影院| 日韩电影在线免费观看| 99久久er热在这里只有精品15 | 中文字幕精品在线不卡| 男女性色大片免费观看一区二区| 91小宝寻花一区二区三区| 久久综合九色综合欧美亚洲| 亚洲午夜在线视频| www.成人网.com| 2020国产精品| 蜜桃91丨九色丨蝌蚪91桃色| 91蜜桃网址入口| 久久久无码精品亚洲日韩按摩| 亚洲aⅴ怡春院| 91福利社在线观看| 国产精品狼人久久影院观看方式| 麻豆精品一区二区综合av| 欧美日韩一区久久| 亚洲精品国产一区二区精华液 | 欧美日韩成人一区| 亚洲免费观看高清完整版在线观看熊 | **欧美大码日韩| 国产福利精品导航| 欧美成人精精品一区二区频| 亚洲国产视频在线| 91国偷自产一区二区开放时间 | 韩国午夜理伦三级不卡影院| 在线播放一区二区三区| 亚洲欧美视频一区| 一本高清dvd不卡在线观看| 中文字幕精品—区二区四季| 国精品**一区二区三区在线蜜桃| 欧美另类高清zo欧美| 亚洲一区二区四区蜜桃| 欧美在线色视频| 亚洲精品视频免费看| 91一区二区在线| 亚洲品质自拍视频网站| 色呦呦一区二区三区| 亚洲日本电影在线| 91视视频在线直接观看在线看网页在线看| 日本一区二区三区视频视频| 粉嫩av亚洲一区二区图片| 国产视频911| 不卡av电影在线播放| 中文字幕亚洲在| 99国产精品久久久久久久久久| 中文欧美字幕免费| 国v精品久久久网| 日韩一区有码在线| 91美女片黄在线观看| 亚洲欧美激情一区二区| 欧美视频在线播放| 日本免费在线视频不卡一不卡二| 日韩限制级电影在线观看| 日本午夜精品一区二区三区电影| 日韩欧美亚洲国产另类| 国产伦理精品不卡| 国产精品久久久久久久久久久免费看 | 国产三级一区二区| 成人的网站免费观看| 亚洲激情五月婷婷| 欧美三级韩国三级日本三斤| 人人狠狠综合久久亚洲| 久久免费视频一区| 91丨九色丨蝌蚪富婆spa| 亚洲综合免费观看高清在线观看| 欧美日韩精品系列| 激情五月激情综合网| 国产精品久久一级| 91国偷自产一区二区开放时间| 午夜日韩在线观看| 久久久精品黄色| 一本久久精品一区二区| 午夜日韩在线观看| 国产人妖乱国产精品人妖| 99久久综合色| 日韩精品免费视频人成| 欧美国产综合一区二区| 色94色欧美sute亚洲线路一ni| 热久久一区二区| 国产精品久久久久三级| 欧美日韩夫妻久久| 国产精品99久久不卡二区| 亚洲女女做受ⅹxx高潮| 91精品国产综合久久香蕉的特点| 国产福利一区二区| 亚洲电影视频在线| 国产日产欧美一区| 欧美美女一区二区三区| 成人精品鲁一区一区二区| 亚洲成av人片一区二区三区| 久久色.com| 欧美日韩一级黄| 成人国产精品免费观看动漫| 日韩不卡免费视频| 国产精品国产馆在线真实露脸| 欧美日韩国产一二三| 丁香六月综合激情| 日韩精品一卡二卡三卡四卡无卡 | 国产麻豆精品在线| 亚洲第一搞黄网站| 国产精品久久久久久久久晋中| 6080yy午夜一二三区久久| 成人午夜电影小说| 美女在线一区二区| 亚洲综合在线电影| 国产性天天综合网| 制服丝袜亚洲精品中文字幕| 91香蕉视频在线| 国产宾馆实践打屁股91| 午夜欧美大尺度福利影院在线看| 久久精品视频在线免费观看| 欧美久久一二区| 色综合 综合色| 国产99久久久精品| 青青青伊人色综合久久| 亚洲另类在线视频| 国产亚洲精品7777| 欧美精品一区二区三区在线| 欧美精三区欧美精三区| 欧洲视频一区二区| 99精品偷自拍| aaa欧美色吧激情视频| 国产精品资源在线| 麻豆精品国产传媒mv男同| 亚洲成人自拍一区| 一区二区在线电影| 国产精品国产三级国产专播品爱网 | 丁香婷婷深情五月亚洲| 久久99精品一区二区三区 | 久久伊人蜜桃av一区二区| 欧美三级电影网| 色噜噜夜夜夜综合网| www.欧美色图| 99久久精品国产麻豆演员表| 成人深夜视频在线观看| 精品中文字幕一区二区| 美女网站视频久久| 日韩国产精品久久|