久久中文视频-久久中文网-久久中文亚洲国产-久久中文字幕久久久久-亚洲狠狠成人综合网-亚洲狠狠婷婷综合久久久久


曙海教育集團(tuán)論壇Win CE 專區(qū)WinCE系統(tǒng)定制與驅(qū)動(dòng)開(kāi)發(fā) → 關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問(wèn)題


  共有6925人關(guān)注過(guò)本帖樹形打印

主題:關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問(wèn)題

美女呀,離線,留言給我吧!
wangxinxin
  1樓 個(gè)性首頁(yè) | 博客 | 信息 | 搜索 | 郵箱 | 主頁(yè) | UC


加好友 發(fā)短信
等級(jí):青蜂俠 帖子:1393 積分:14038 威望:0 精華:0 注冊(cè):2010-11-12 11:08:23
關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問(wèn)題  發(fā)帖心情 Post By:2010-11-26 10:26:40

目前我用VS2005定制intel 8255QM的網(wǎng)卡驅(qū)動(dòng),但是WINCE啟動(dòng)后看不到添加的網(wǎng)絡(luò)連接
現(xiàn)在我做了以下幾件事
第一我在platform.bib的MODULES中添加了  
e100ce6.dll $(_FLATRELEASEDIR)\e100ce6.dll NK SHK
第二我在platform.reg中添加了

IF CEPB_INTELFE_PCI

;Create registry information for Intel(R) Miniport Driver

[HKEY_LOCAL_MACHINE\Comm\E100CE6]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.dll"


;Create registry information for template (will be copied to ALL instances of
;adapters using the Intel Miniport Driver)

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\PCI\Template\E100CE6]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"1229","2449","1031","1032","1033","1034","1035","1036","1037","1038","1039","103A","103B"
  "Dll"="NDIS.dll"
  "Entry"="NdisPCIBusDeviceInit"
  "Transceiver"=dword:3
  "MiniPort"="E100CE6"
;Installable ISR Handler Information
  "IsrDll"="giisr.dll"
  "IsrHandler"="ISRHandler"
  "PortIsIO"=dword:0
  "PortOffset"=dword:0
  "PortSize"=dword:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE61\Parms\TcpIp]
  "EnableDHCP"=dword:1
  ; This should be MULTI_SZ
  "DefaultGateway"=""
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="0.0.0.0"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="0.0.0.0"
ENDIF ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE61\Parms\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

[HKEY_LOCAL_MACHINE\Comm\E100CE6B]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.dll"


;Create registry information for template (will be copied to ALL instances of
;adapters using the Intel Miniport Driver)

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\PCI\Template\E100CE6B]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"103C","103D","103E","1050","1051","1052","1053","1054","1055","1056","1057"
  "Dll"="NDIS.dll"
  "Entry"="NdisPCIBusDeviceInit"
  "Transceiver"=dword:3
;Installable ISR Handler Information
  "IsrDll"="giisr.dll"
  "IsrHandler"="ISRHandler"
  "PortIsIO"=dword:0
  "PortOffset"=dword:0
  "PortSize"=dword:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE6B1\Parms\TcpIp]
  "EnableDHCP"=dword:1
  ; This should be MULTI_SZ
  "DefaultGateway"=""
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="0.0.0.0"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="0.0.0.0"
ENDIF ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE6B1\Parms\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

[HKEY_LOCAL_MACHINE\Comm\E100CE6C]
  "DisplayName"="Intel(R) Fast Ethernet Controller"
  "Group"="NDIS"
  "ImagePath"="e100ce6.dll"

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\PCI\Template\E100CE6C]
;PCI Bus Enumeration Information
  "Class"=dword:02
  "SubClass"=dword:00
  "ProgIF"=dword:0
  "VendorID"=multi_sz:"8086","8086","8086","8086","8086","8086","8086","8086"
  "DeviceID"=multi_sz:"1064","1065","1066","1067","1068","1069","106A","106B"
  "Dll"="NDIS.dll"
  "Entry"="NdisPCIBusDeviceInit"
  "Transceiver"=dword:3
;Installable ISR Handler Information
  "IsrDll"="giisr.dll"
  "IsrHandler"="ISRHandler"
  "PortIsIO"=dword:0
  "PortOffset"=dword:0
  "PortSize"=dword:2
  "PortMask"=dword:FF00

;Settings for DHCP IP Configuration, if enabled
IF DHCP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE6C1\Parms\TcpIp]
  "EnableDHCP"=dword:1
  ; This should be MULTI_SZ
  "DefaultGateway"=""
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="0.0.0.0"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="0.0.0.0"
ENDIF ;//DHCP

;Settings for static IP configuration, if enabled
IF STATIC_IP
[HKEY_LOCAL_MACHINE\COMM\PCI\E100CE6C1\Parms\TcpIp]
  "EnableDHCP"=dword:0
  ; This should be MULTI_SZ
  "DefaultGateway"="1.2.3.0"
  ; Use zero for broadcast address? (or 255.255.255.255)
  "UseZeroBroadcast"=dword:0
  ; This should be MULTI_SZ, the IP address list
  "IpAddress"="1.2.3.4"
  ; This should be MULTI_SZ, the subnet masks for the above IP addresses
  "Subnetmask"="255.0.0.0"
ENDIF ;//Static IP

ENDIF ;//Intel(R) miniport registry additions.
第三我在項(xiàng)目的環(huán)境變量中添加了CEPB_INTELFE_PCI =1
第四我把下載的幾個(gè)文件復(fù)制到了platform\cepc\files的目錄下
第五 以前在5.0會(huì)有一個(gè)cec文件,但是6.0沒(méi)有只有pbcxml,我用vs2005打開(kāi)cec就報(bào)錯(cuò),怎么改都不對(duì),所以我也就沒(méi)有轉(zhuǎn)換,添加這個(gè)catalog.
但現(xiàn)在問(wèn)題是在NK.BIN中可以看到網(wǎng)卡的DLL和注冊(cè)表的信息,但是OS啟動(dòng)后看不到這個(gè)網(wǎng)卡的連接,希望大家能幫我解決這個(gè)問(wèn)題,謝謝啊

支持(0中立(0反對(duì)(0單帖管理 | 引用 | 回復(fù) 回到頂部

返回版面帖子列表

關(guān)于VS2005定制WINCE6.0的intel網(wǎng)卡驅(qū)動(dòng)問(wèn)題








簽名
主站蜘蛛池模板: 国产亚洲精品资源一区 | 在线国产二区 | 亚洲精选在线观看 | 夜色www| 精品亚洲一区二区三区 | 一道精品视频一区二区三区图片 | 在线久久 | 国产一级片大全 | 国产亚洲一区二区三区不卡 | 深夜福利国产福利视频 | 久久精品二区 | 精品久久网 | 亚洲免费视频网站 | 国产成人18黄网站在线观看网站 | 亚洲第一免费播放区 | 亚洲免费色视频 | 九九视频只有精品六 | 日韩一区二区免费看 | 美女张开腿让男生桶出水 | 久久亚洲私人国产精品va | 亚洲一区欧洲一区 | 亚洲热视频 | 久久精品国产精品亚洲 | 泰国情欲片寂寞的寡妇在线观看 | 欧美成人午夜免费完成 | 久久综合久美利坚合众国 | 成人国产欧美精品一区二区 | 精品久久久久久中文字幕网 | 一级毛片成人午夜 | 欧美成年| 国产精品porn| 亚欧毛片 | 成人伊人青草久久综合网 | 国产中的精品一区的 | 国产日韩久久久久69影院 | 欧洲成人全免费视频网站 | 欧美另类69xxxxx 视频 | a毛片全部播放免费视频完整18 | 久久成人国产精品免费 | 亚洲精品aaa | 永久免费毛片手机版在线看 |