如何添加Wifi驱动程序到Wince图像 [英] How To Add Wifi Driver to Wince Image

查看:93
本文介绍了如何添加Wifi驱动程序到Wince图像的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 我是Compact 7的新手


我尝试使用Wince开发Windows网络投影仪设备


我使用它开发了它x86通用CEPC BSP现在问题是我有Ambicom无线USB加密狗,它兼容 


WinCE 5/6/7即使我有相同的CAbinet格式的驱动程序以及.reg, .dll


我想在我的现有BSP中添加这个dll文件


任何人都可以指导我一步一步该怎么做?



我只有二进制文件


我在网站上找到了


RT2870.dll



WLxN-USB_Colibri_CE5.reg


内容


REGEDIT4



[HKEY_LOCAL_MACHINE\Comm\RT2870]

" DisplayName" =" RT2870 b / g / n无线局域网驱动程序"

"组"="NDIS"

" ImagePath" =" RT2870.dll"



[HKEY_LOCAL_MACHINE \Drivers\USB \ LoadClients \ 5263_12400 \0_0_0\255_255_255\RT2870]
$
" Dll" =" RT2870.dll"



[HKEY_LOCAL_MACHINE \Drivers \ USB\ClientDrivers\RT2870]
$
" Dll" =" RT2870.dll"



[HKEY_LOCAL_MACHINE \ Comm \ _RT28701 \Parms]
$
" BusNumber" = dword:00000000

" BusType" = dword:00000000

" OpMode" ; = dword:00000000

" WirelessMode" = dword:00000005

" Channel" = dword:00000001

" CountryRegion" = dword:00000005

" CountryRegionABand" = dword:00000007

" RtsThresh" = dword:00000000

" FragThresh" = dword: 00000000

"加密" = dword:00000000

" AuthenType" = dword:00000000

" AutoReconnect" = dword:00000001

" NetworkType" = dword:00000001

" SSID" ="" RT2870AP"

&q uot; BACapability" = dword:006b54a4

" TransmitSetting" = dword:00000000

" ProviderName" =" Ralink Technology,Inc。"


"VendorDesc"="RT2870 802.11 b / g / n无线卡。""
"WEPKeyUse" = dword:00000001

" WEPKey1" ; =""

" WEPKey2" =""

" WEPKey3" =""

" WEPKey4" =""
$


[HKEY_LOCAL_MACHINE \Comm \ RT28701 \Parms \ TcpIp]

" EnableDHCP" = dword:00000001
$


[HKEY_LOCAL_MACHINE \Drivers\BuiltIn\PCI\Template\EHCI]
$
" IntThreshCtrl" = dword:00000001




Kalpesh Patel如果您发现这些帖子已经回答了您的问题或疑问,请点击" ;标记为答案"。如果帖子包含有用的信息,请点击"投票为有用"。按钮

解决方案

在platform.reg中包含.reg


将.dll文件复制到< TARGETPLATROOT> / FILES 


在platform.bib文件中添加这些条目。



有关.reg和.bib文件的更多详细信息,请参阅以下链接:


http://blogs.msdn.com/b/mikehall/archive/2005/03/23/401348.aspx


http://geekswithblogs.net/BruceEitman/archive/2008/06/17/platform-b​​uilder-using-bib-files-to-add-files-to-a.aspx


 i am new to Compact 7

i try to develop Windows Network Projector Device using Wince

I Developed it using x86 Generic CEPC BSP now Problem is that i have Ambicom Wireless USB Dongle which Compatible with 

WinCE 5/6/7 even i have driver for same in CAbinet format as well as .reg , .dll

i want to add this dll file in my Existing BSP

Can anybody guide me step step by how to do that??

i have only Binary File

which i found From website

RT2870.dll

and

WLxN-USB_Colibri_CE5.reg

Content

REGEDIT4

[HKEY_LOCAL_MACHINE\Comm\RT2870]
"DisplayName"="RT2870 b/g/n Wireless LAN Driver"
"Group"="NDIS"
"ImagePath"="RT2870.dll"

[HKEY_LOCAL_MACHINE\Drivers\USB\LoadClients\5263_12400\0_0_0\255_255_255\RT2870]
"Dll"="RT2870.dll"

[HKEY_LOCAL_MACHINE\Drivers\USB\ClientDrivers\RT2870]
"Dll"="RT2870.dll"

[HKEY_LOCAL_MACHINE\Comm\RT28701\Parms]
"BusNumber"=dword:00000000
"BusType"=dword:00000000
"OpMode"=dword:00000000
"WirelessMode"=dword:00000005
"Channel"=dword:00000001
"CountryRegion"=dword:00000005
"CountryRegionABand"=dword:00000007
"RtsThresh"=dword:00000000
"FragThresh"=dword:00000000
"Encryption"=dword:00000000
"AuthenType"=dword:00000000
"AutoReconnect"=dword:00000001
"NetworkType"=dword:00000001
"SSID"="RT2870AP"
"BACapability"=dword:006b54a4
"TransmitSetting"=dword:00000000
"ProviderName"="Ralink Technology, Inc."
"VendorDesc"="RT2870 802.11 b/g/n Wireless Card."
"WEPKeyUse"=dword:00000001
"WEPKey1"=""
"WEPKey2"=""
"WEPKey3"=""
"WEPKey4"=""

[HKEY_LOCAL_MACHINE\Comm\RT28701\Parms\TcpIp]
"EnableDHCP"=dword:00000001

[HKEY_LOCAL_MACHINE\Drivers\BuiltIn\PCI\Template\EHCI]
"IntThreshCtrl"=dword:00000001


Kalpesh Patel If you find these posts answered your question or issue, please click on "Mark as answer". If a post contained helpfull information, please be click on the "Vote as helpful" button

解决方案

Include .reg in platform.reg

Copy .dll files to <TARGETPLATROOT>/FILES 

Add these entries in platform.bib file.

For more details on .reg and .bib files, see these links:

http://blogs.msdn.com/b/mikehall/archive/2005/03/23/401348.aspx

http://geekswithblogs.net/BruceEitman/archive/2008/06/17/platform-builder-using-bib-files-to-add-files-to-a.aspx


这篇关于如何添加Wifi驱动程序到Wince图像的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆