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

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

?? config.h

?? 440bx vxworks bsp
?? H
字號:
/* config.h - WindRiver SBC ARM7TDMI configuration header */


/* Copyright 1984-2001 Wind River Systems, Inc. */
#include "copyright_wrs.h"

/*
modification history
--------------------
01o,23jul04,a_m  BSP定制 for 多刃劍開發板
01n,16jul02,m_h  C++ protection
01m,09may02,m_h  New rev for PHY changes
01l,19dec01,m_h  FLASH_CHIP_WIDTH needed for new version flash functions
01k,30nov01,m_h  increase ROM_SIZE for ROM resident images
01j,27sep01,m_h  bump revision for big endian support
01i,24aug01,m_h  SPR 69508, boot line
01h,23jul01,m_h  builds on UNIX
01g,17jul01,g_h  add support for visionWARE 2.00
01f,10jul01,g_h  add INCLUDE_LCD & INCLUDE_LED & INCLUDE_NETWORK macros
01e,06jun01,m_h  flash cache issues
01d,16may01,m_h  default baud now 9600
01c,01may01,m_h  bump revision to 10
01b,26apr01,m_h  convert tabs to spaces for readability
01a,12apr01,m_h  created from snds100 template.
*/

/*
This module contains the configuration parameters for the SBC ARM7TDMI BSP.
*/

#ifndef INCconfigh
#define INCconfigh

#ifdef __cplusplus
extern "C" {
#endif

/* BSP version/revision identification, before configAll.h */

#define BSP_VER_1_1    1    /* 1.2 is backward compatible with 1.1 */
#define BSP_VER_1_2    1
#define BSP_VERSION    "1.2"
#define BSP_REV        "/19"    /* BSP revision */

#include "configAll.h"

/*
 * STANDALONE_NET must be defined for network debug with
 * standalone vxWorks
 */
#undef STANDALONE_NET

/*
 * Define SERIAL_DEBUG to enable debugging
 * via the serial ports
 */
#undef SERIAL_DEBUG

/*
 * If the FORCE_DEFAULT_BOOT_LINE is defined then the DEFAULT_BOOT_LINE
 * parameters are always used regardless of NVRAM values specified at
 * bootrom time. See target.nr for details. This is usually used to debug
 * downloaded images with out a bootrom present.
 */
#define FORCE_DEFAULT_BOOT_LINE	/*  : undef->define */

#ifdef INCLUDE_WDB_COMM_VTMD
#define FORCE_DEFAULT_BOOT_LINE /* When using TMD this macro should be undefined */
#endif /* INCLUDE_WDB_COMM_VTMD */

#ifdef FORCE_DEFAULT_BOOT_LINE
#undef INCLUDE_VWARE_LAUNCH
#else
#define INCLUDE_VWARE_LAUNCH
#endif /* FORCE_DEFAULT_BOOT_LINE */

/* Bootline Parameters */		/*  : modified */
#define DEFAULT_BOOT_LINE       "ene(0,0)host:vxWorks " \
                                "h=192.166.0.254 " \
                                "e=192.166.0.2:ffffff00 " \
                                "g=192.166.0.1 "  \
                                "u=target "     \
                                "pw=target "     \
                                "tn=strong44b0x" 

#ifdef INCLUDE_VWARE_LAUNCH
  #define VWARE_BOOT_LINE       "sng(0,0)host:vxWorks " \
                                "%s " \
                                "%s " \
                                "%s " \
                                "u=target " \
                                "tn=targetname" 
#endif /* INCLUDE_VWARE_LAUNCH */

/* Memory configuration */

#undef  LOCAL_MEM_AUTOSIZE              /* run-time memory sizing */
#define LOCAL_MEM_SIZE       0x00800000 /* 8M */
#define USER_RESERVED_MEM    0x0        /* see sysMemTop() */
#define DRAM_TYPE 1                     /* 1 - SDRAM, 0 - EDO DRAM */

/*
 * Boot ROM is an image written either to EPROM or to a Flash device.
 * If a Flash device is used, part of it can be reserved for boot
 * parameters etc. (see the Flash section below).
 *
 * The following parameters are defined here and in the Makefile.
 * They must be kept synchronized; effectively config.h depends on Makefile.
 * Any changes made here must be made in the Makefile and vice versa.
 *
 * ROM_BASE_ADRS is the base of the Flash ROM/EPROM.
 * ROM_TEXT_ADRS is the entry point of the VxWorks image
 * ROM_SIZE is the size of the part of the Flash ROM/EPROM allocated to
 *        the VxWorks image (block size - size of headers)
 *
 * Two other constants are used:
 * ROM_COPY_SIZE is the size of the part of the ROM to be copied into RAM
 *          (uncompressed bootrom)
 * ROM_SIZE_TOTAL is the size of the entire Flash ROM (used in sysPhysMemDesc)
 *
 * The values are given as literals here to make it easier to ensure
 * that they are the same as those in the Makefile.
 */

#define ROM_BASE_ADRS        0x00000000    /* base of Flash/EPROM 16 MB */
/*  : 0x01000000->0x00000000 */
#define ROM_TEXT_ADRS        0x00000000    /* code start addr in ROM */
#define ROM_SIZE             0x00080000    /* size of ROM holding bootRom 512K */

#define ROM_COPY_SIZE        ROM_SIZE
#define ROM_SIZE_TOTAL       0x00200000    /* total size of ROM 2MB */
/*  : 0x00006000->0x0C001000 */
#define RAM_LOW_ADRS         0x0C001000    /* VxWorks image entry point */
/*  : 0x00480000->0x0C500000 */
#define RAM_HIGH_ADRS        0x0C500000    /* RAM address for ROM boot */

/*
 * Flash memory configuration
 *
 * If a Flash memory part is fitted instead of an EPROM, part of it can
 * be used as NVRAM storage, if desired.  If this is wanted, define
 * INCLUDE_FLASH and reduce ROM_SIZE in this file and in Makefile by
 * NV_RAM_SIZE.  The default is not to provide support for Flash.
 */

#undef INCLUDE_FLASH 		/*  : define->undef */

#ifdef INCLUDE_FLASH
#define FLASH_WIDTH           4
#define FLASH_CHIP_WIDTH      2
#define SYS_FLASH_TYPE        FLASH_29LV800    /* Specify 16 bit 29F part */
#define FLASH_SEGMENT_SIZE    0x2000           /* sector size at 0xFA000-0xFBFFF */
#define FLASH_ADRS            ((SBCARM7_FLASH_BASE + 0xFA000) | 0x4000000) /* non cacheable */
#define FLASH_SIZE            FLASH_SEGMENT_SIZE
#undef FLASH_NO_OVERLAY

#undef NV_RAM_ADRS
#undef NV_RAM_INTRVL
#undef NV_RAM_SIZE
#undef NV_BOOT_OFFSET
#define NV_RAM_ADRS           FLASH_ADRS
#define NV_RAM_INTRVL         1
#define NV_RAM_SIZE           FLASH_SEGMENT_SIZE
#define NV_BOOT_OFFSET        (FLASH_SEGMENT_SIZE - 0x200)

#else
#define NV_RAM_SIZE           NONE
#endif    /* INCLUDE_FLASH */

/* LCD support */
#undef INCLUDE_LCD			/*  : define->undef */

/* LED support */
#undef INCLUDE_LED			/*  : define->undef */

#undef BSP_VTS

#ifdef BSP_VTS
#undef INCLUDE_PING
#undef INCLUDE_RLOGIN
#undef INCLUDE_SHOW_ROUTINES
#undef INCLUDE_NET_SYM_TABLE

#define INCLUDE_SHELL
#define INCLUDE_PING
#define INCLUDE_RLOGIN
#define INCLUDE_SHOW_ROUTINES
#define INCLUDE_NET_SYM_TABLE
#endif /*BSP_VTS*/

#undef  WDB_COMM_TYPE         /* default WDB agent communication path is END */
#define WDB_COMM_TYPE         WDB_COMM_END

/* Serial port configuration */

#define INCLUDE_SERIAL
#undef    NUM_TTY
#define NUM_TTY               N_SIO_CHANNELS

#undef  CONSOLE_TTY
#define CONSOLE_TTY           0

/*** WDB ***/
#ifdef SERIAL_DEBUG
#undef  DEFAULT_BOOT_LINE		/*  : added*/
#define DEFAULT_BOOT_LINE 		"tsfs(0,0)host:vxWorks " \
                                "h=192.166.0.254 " \
                                "e=192.166.0.2:ffffff00 " \
                                "g=192.166.0.1 "  \
                                "u=target "     \
                                "pw=target "     \
                                "tn=strong44b0x " \
                                "o=ene"
#ifndef INCLUDE_TSFS_BOOT		/*  : added*/
#define INCLUDE_TSFS_BOOT
#endif

#define WDB_NO_BAUD_AUTO_CONFIG

#undef WDB_COMM_TYPE
#undef WDB_TTY_BAUD
#undef WDB_TTY_CHANNEL
#undef WDB_TTY_DEV_NAME

#define WDB_COMM_TYPE         WDB_COMM_SERIAL /* WDB in Serial mode */
/*  : 115200->38400 */
#define WDB_TTY_BAUD          38400           /* Baud rate for WDB Connection */
#define WDB_TTY_CHANNEL       1               /* COM PORT #2 */
#define WDB_TTY_DEV_NAME      "/tyCo/1"       /* default TYCODRV_5_2 device name */
#endif /* SERIAL_DEBUG */


/*
 * Cache configuration
 *
 * Note that when MMU is enabled, cache modes are controlled by
 * the MMU table entries in sysPhysMemDesc[], not the cache mode
 * macros defined here.
 */

/* De-select unused (default) network drivers selected in configAll.h */

#undef    INCLUDE_ENP           /* include CMC Ethernet interface*/
#undef    INCLUDE_EX            /* include Excelan Ethernet interface */
#undef    INCLUDE_SM_NET        /* include backplane net interface */
#undef    INCLUDE_SM_SEQ_ADDR   /* shared memory network auto address setup */



/* Enhanced Network Driver (END) Support */
#define INCLUDE_NETWORK
#define INCLUDE_END
#undef  END_OVERRIDE          /* define if you are using old boot ROMs. */

#ifdef  INCLUDE_END
/*  : INCLUDE_SNGKS32C_END->INCLUDE_NE2000_END */
#define INCLUDE_NE2000_END    /* Include Ethernet driver */
#endif  /* INCLUDE_END */

#ifdef INCLUDE_SHELL
#define INCLUDE_SYM_TABLE
#define INCLUDE_STANDALONE_SYM_TABLE
#define INCLUDE_LOADER
#define INCLUDE_UNLOADER
#define INCLUDE_NET_SHOW
#endif /* INCLUDE_SHELL */

/*
 * Interrupt mode - interrupts can be in either preemptive or non-preemptive
 * mode.  For non-preemptive mode, change INT_MODE to INT_NON_PREEMPT_MODEL
 */
#define INT_MODE    INT_NON_PREEMPT_MODEL

/*
 * miscellaneous definitions
 * Note: ISR_STACK_SIZE is defined here rather than in ../all/configAll.h
 * (as is more usual) because the stack size depends on the interrupt
 * structure of the BSP.
 */

#define ISR_STACK_SIZE    0x800    /* size of ISR stack, in bytes */

/* Optional timestamp support */
#define    INCLUDE_TIMESTAMP

#undef INCLUDE_WINDVIEW
#undef INCLUDE_INSTRUMENTATION

#define INCLUDE_DOSFS
#define INCLUDE_RAMDRV

/* Optional TrueFFS support */
/*  : undef->define */
#define    INCLUDE_TFFS        /* to include TrueFFS driver */

#ifdef INCLUDE_TFFS
#define	INCLUDE_MTD_SST39VF160 /*  : added */
#define INCLUDE_SHOW_ROUTINES
#define INCLUDE_DOSFS
#endif /* INCLUDE_TFFS */

/*
 * There isn't MMU support in this BSP, this macro is to
 * force the MMU to be disable.
 */

#undef INCLUDE_MMU_BASIC

/*
 * For cache support define this macro
 */
#define INCLUDE_CACHE_SUPPORT

/*  -以下是自己定制的宏定義 */
#undef RAM_SIM							/* 是否用SDT仿真 */

#undef	SYS_CLK_RATE					/* 設置系統時鐘頻率,缺省60 */
#define	SYS_CLK_RATE		100

#undef  CONSOLE_BAUD_RATE
#define CONSOLE_BAUD_RATE	9600		/* bootRom Shell 波特率,缺省9600 */

#define INCLUDE_FTP_SERVER				/* 啟動目標機FTP服務 */

#undef INCLUDE_BOOTP					/* 裁減映象大小,節省約20K */
/*  -以上是自己定制的宏定義 */

#include "wrSbcArm7.h"

#ifdef __cplusplus
}
#endif

#endif /* INCconfigh */
#if defined(PRJ_BUILD)
#include "prjParams.h"
#endif

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲精品欧美二区三区中文字幕| 日韩一级片网址| 性做久久久久久免费观看欧美| 欧美日韩国产综合一区二区三区| 亚洲欧美日韩综合aⅴ视频| 欧美综合视频在线观看| 日产国产高清一区二区三区| 国产亚洲制服色| 欧美特级限制片免费在线观看| 奇米亚洲午夜久久精品| 国产精品久久久久三级| 欧美精品一二三| 成人高清免费观看| 夜夜嗨av一区二区三区中文字幕| 欧美岛国在线观看| 91久久精品国产91性色tv| 激情文学综合插| 亚洲精品伦理在线| 久久久久久久久久久久久久久99 | 亚洲欧美综合在线精品| 欧美美女一区二区在线观看| 国产九色sp调教91| 午夜日韩在线观看| 欧美激情综合在线| 91精品国产手机| 99国产欧美另类久久久精品| 麻豆91小视频| 亚洲国产cao| 亚洲欧美自拍偷拍色图| 久久欧美中文字幕| 欧美精品高清视频| 色婷婷久久久亚洲一区二区三区| 亚洲一区二区免费视频| 午夜亚洲国产au精品一区二区| 欧美国产日韩精品免费观看| 日韩一级免费观看| 欧美日韩视频在线第一区| 99久久久无码国产精品| 国产一区二区三区日韩| 免费精品视频在线| 亚洲成人高清在线| 亚洲黄一区二区三区| 欧美激情综合网| 久久久美女毛片| 日韩午夜电影在线观看| 欧美色综合网站| 91国产成人在线| 国产精品资源在线观看| 日本网站在线观看一区二区三区| 国产人妖乱国产精品人妖| 精品国产电影一区二区| 欧美一级高清片| 91精品国产乱| 欧美一区二区私人影院日本| 欧美主播一区二区三区美女| 91伊人久久大香线蕉| 风间由美性色一区二区三区| 国产91精品一区二区麻豆网站| 国产真实乱对白精彩久久| 久久97超碰国产精品超碰| 美国毛片一区二区| 美女视频黄免费的久久| 美日韩一级片在线观看| 蜜臀99久久精品久久久久久软件| 亚洲综合在线免费观看| 国产精品久久久久久久久果冻传媒| 国产日韩欧美电影| 国产精品传媒视频| 综合久久久久综合| 亚洲曰韩产成在线| 一区二区三区国产精品| 亚洲国产精品久久一线不卡| 国产精品久久久久久久久果冻传媒| 国产亚洲va综合人人澡精品| 中文字幕国产精品一区二区| 1000部国产精品成人观看| 亚洲人被黑人高潮完整版| 一区二区在线观看免费| 亚洲午夜在线观看视频在线| 成人99免费视频| 成人综合婷婷国产精品久久免费| 成人av免费在线| 欧洲色大大久久| 日韩一级视频免费观看在线| 国产亚洲欧美色| 亚洲男人天堂一区| 日韩av一区二区在线影视| 韩国一区二区在线观看| 成人免费高清在线| 色婷婷激情久久| 7878成人国产在线观看| 久久婷婷国产综合精品青草| 国产精品久久久久国产精品日日| 亚洲成人在线观看视频| 国内精品自线一区二区三区视频| 国产美女久久久久| av资源站一区| 欧美性生活影院| 欧美一区日本一区韩国一区| 久久久久久**毛片大全| 国产精品色在线观看| 一区二区三区四区中文字幕| 免费一级片91| 99r国产精品| 日韩欧美成人午夜| 亚洲日本免费电影| 精品中文字幕一区二区小辣椒| 91亚洲精品乱码久久久久久蜜桃| 4hu四虎永久在线影院成人| 欧美国产综合色视频| 五月天一区二区三区| 国产宾馆实践打屁股91| 91精品国产全国免费观看| 中文字幕在线不卡国产视频| 日韩在线卡一卡二| 国产一区二区在线观看视频| 成人综合在线视频| 日韩欧美成人一区二区| 一区二区三区国产豹纹内裤在线| 国产精品资源网| 亚洲男同性恋视频| 国产九色sp调教91| 日韩欧美一区二区在线视频| 亚洲欧洲成人自拍| 国产精品一区久久久久| 777色狠狠一区二区三区| 亚洲欧美国产毛片在线| 久久国产视频网| 欧美日韩视频在线观看一区二区三区 | 91福利国产成人精品照片| 精品国产91九色蝌蚪| 午夜视黄欧洲亚洲| 91福利视频在线| 国产精品毛片高清在线完整版| 久久99精品一区二区三区三区| 色拍拍在线精品视频8848| 欧美国产日韩在线观看| 狠狠色丁香久久婷婷综合_中| 91麻豆精品国产91久久久使用方法 | 久久精品在线免费观看| 亚洲综合区在线| 色婷婷久久99综合精品jk白丝| 欧美国产一区二区| 国产麻豆精品视频| 精品美女在线观看| 美国欧美日韩国产在线播放| 欧美年轻男男videosbes| 亚洲无线码一区二区三区| 91久久精品午夜一区二区| 亚洲男人天堂av| 成人综合在线网站| 精品国产免费视频| 日韩国产精品91| 欧美日韩1234| 日韩激情视频网站| 在线播放欧美女士性生活| 亚洲高清视频在线| 欧美日韩色综合| 一区二区三区欧美| 欧美日韩在线免费视频| 亚洲一区二区三区视频在线播放| 卡一卡二国产精品 | 51精品秘密在线观看| 视频一区中文字幕国产| 欧美电影免费观看完整版| 国产一区二区调教| 亚洲桃色在线一区| 欧美日韩大陆一区二区| 精品一区二区三区香蕉蜜桃| 久久精品在线观看| 色婷婷久久99综合精品jk白丝| 日韩精品午夜视频| 中文字幕精品三区| 欧美卡1卡2卡| 国产成人高清在线| 亚洲永久免费av| 久久综合视频网| 欧洲日韩一区二区三区| 国产在线不卡一区| 一区二区三区精品在线观看| 日韩欧美一级二级三级| 成人白浆超碰人人人人| 午夜精品一区二区三区三上悠亚| 丁香六月综合激情| 久久综合色8888| 色久优优欧美色久优优| 精品在线播放午夜| 一区二区三区毛片| 久久久影视传媒| 欧美羞羞免费网站| 国产福利一区在线观看| 亚洲成年人网站在线观看| 国产视频一区二区在线| 欧美日韩日日摸| 本田岬高潮一区二区三区| 日本亚洲三级在线| 亚洲精品成人天堂一二三| 337p粉嫩大胆噜噜噜噜噜91av| 一本久道久久综合中文字幕| 国内精品写真在线观看|