<dfn id="is4kg"></dfn>
  • <ul id="is4kg"></ul>
  • <abbr id="is4kg"></abbr>
  • <ul id="is4kg"></ul>
    <bdo id="is4kg"></bdo>

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


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

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

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


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

    目前我用VS2005定制intel 8255QM的網(wǎng)卡驅(qū)動,但是WINCE啟動后看不到添加的網(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
    第四我把下載的幾個文件復(fù)制到了platform\cepc\files的目錄下
    第五 以前在5.0會有一個cec文件,但是6.0沒有只有pbcxml,我用vs2005打開cec就報錯,怎么改都不對,所以我也就沒有轉(zhuǎn)換,添加這個catalog.
    但現(xiàn)在問題是在NK.BIN中可以看到網(wǎng)卡的DLL和注冊表的信息,但是OS啟動后看不到這個網(wǎng)卡的連接,希望大家能幫我解決這個問題,謝謝啊

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

    返回版面帖子列表

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








    簽名
    主站蜘蛛池模板: 久久久久久久波多野结衣高潮| 国产欧美一区二区精品久久久| 久久精品国产亚洲av电影| 波多野结衣免费在线| 国产亚洲欧美日韩亚洲中文色| 99re精彩视频| 成人免费视频试看120秒| 亚洲成AV人片在线观看无码不卡| 精品无码成人网站久久久久久| 国产特级毛片aaaaaaa高清| s级爆乳玩具酱国产vip皮裤| 日本人六九视频jⅰzzz| 欧美亚洲国产片在线观看| 国产三级在线观看视频不卡| 800av我要打飞机| 天天综合亚洲色在线精品| 久久精品久久精品久久精品| 欧美人xxxx| 免费va人成视频网站全| 里番acg全彩| 国产精品日本一区二区在线播放 | 里番acg全彩本子| 国产网红在线观看| 一级毛片视频免费| 无码一区二区三区AV免费| 亚洲人成网站在线观看播放青青 | 欧美人与物VIDEOS另类| 午夜视频在线观看视频| 青柠直播在线观看高清播放| 国产精品最新资源网| 国产精品亚洲成在人线| 丰满年轻的继坶| 日韩乱码人妻无码中文字幕久久| 亚洲欧美另类精品久久久| 特级淫片国产免费高清视频| 四虎884tt紧急大通知| 西西人体444rt高清大胆| 国产片免费福利片永久| 99热99在线| 大地资源在线资源官网| 中国jizz日本|