Welcome![Sign In][Sign Up]
Location:
Search - Driver Wizard

Search list

[Driver DevelopWinDriver 安装指南和使用说明

Description:

WinDriver/KernelDriver是一个开发驱动程式的革命性工具,产品线包含了市场领先的驱动程序开发工具包,专门设计用于开发高性能,高质量的用户模式设备驱动程序。无需DDK知识或内核级的开发。其优越的功能可以协助开发者测试硬件,自动产生驱动程式原始码。Driver Wizard同时也提供在Linux, Solaris的图形使用者界面。


Platform: | Size: 593080 | Author: kaixin_0007 | Hits:

[SourceCode驱动开发

Description: 驱动开发环境搭建vs6.0+ddk 2600+windows xp+Driver Studio 3.2 2010-07-07 09:35 驱动开发环境之Windows XP DDK2600,VC++ 6.0, Driver Studio 3.2 神秘的驱动开发,神秘的WINDOWS内核,是什么把这些搞得这么神秘呢? 搭Windows驱动开发平台. 要安装的东西都有这些:在Windows XP的基础上,先装上VC++6.0,再装DDK2600(也就是DDK的XP版),最后装 Driver Studio 3.2。 1.首先装VC++ 6.0, 要装VC++6.0那是因为这个IDE式的环境你已经很熟悉,编译和连接的时候不要用各种命令行的命令,只要鼠标点点,就可以(当然啦,一些参数还是要填的)。具体怎么装我就不介绍了。 2.安装XP系统的DDK, DDK全称是叫Driver Development Kit,它提供4种驱动程序的编译环境,我们这种初学者一般是选Win XP Checked Build Enviorment。 ftp://202.113.29.4/ISO/M$/WinDDK/winxp_ddk.rar 这个是下载地址,我写这篇文章的时候这个链接还是通的,不知你看的时候通不通了,如果不通你可以联系我,我可以发给你。 安装的时候就没什么特别要注意的地方,唯一要记得的是记住要完整安装,把那些什么Samples全装上,对于我们这些初学者会很有用的。 3.安装Driver Studio, DriverStudio 是一套用来简化微软Windows 平台下设备驱动程序的开发,调试和测试的工具包。 对于学过Windows 编程的人我可以打个形象的比喻: DriverStudio中的DriverWorks,本质是“DDK类库”,使用C++类库封装的方法简化了NT Driver或者WDM驱动程序的开发,使用DriverWorks代替DDK开发,类似于使用MFC代替SDK开发Windows应用程序。 http://download2.77169.com/soft/Source/debug/200801/20071229SoftICExlDS3.2.1.zip 这个是下载地址。这个需要序列号和注册文件: http://www.4x4y.com/10257_CrackDown_Compuware.DriverStudio.v3.2.iNTERNAL.html 这个是序列号生成器和注册文件打包下载的地址。 2.安装和配置   软件的安装顺序:Windows XP --> VC6.0 --> WinXP_DDK -> DriverStudio3.2,如果顺序装错了,那么把DriverStudio3.2删除再重装就OK了。从网上找到库文件ntstrsafe.lib+csq.lib.rar,把解压出来的两个库文件拷贝到WinXP_DDK的安装目录下的库目录中(我的是C:WINDDK2600libwxpi386)。启动vc6,然后进行简单的配置:菜单DriverStudio菜单下的DDK Build Settings,在弹出的对话框中选择已经安装的DDK目录(比如我的是C:WINDDK2600),在Windows DDK compiler Options中选择"Enable only for Driver Studio"。 VC6.0-->Tools-->Options,点击"Directories"选项卡: 1)"“Show directories for:"下选择Include files,然后检查有没有包含ddk的头文件目录(我的是C:WINDDK2600incwxp),如果没有则加上; 2)"“Show directories for:"下选择Library files,然后检查有没有包含ddk的库文件目录(我的是C:WINDDK2600libwxpi386),如果没有则加上;    注意:安装DDK时一定要把例子安装(建议你安装全部的模块),否则编译vdwlibs.dsw时会报如下的错: vdw_wdm.lib - 1 error(s), 0 warning(s) 然后打开引起错误的文件,发现: #error The file is from the DDK at srcwdmhidinc. Install DDK HID samples to install hidport.h. Or update INCLUDE path for hidport.h in the DDK! 这表明安装WinXP_DDK的时候没有安装实例。 3.编译适合本机使用的库文件   (1).启动VC6.0。开始-->所有程序-->Compuware DriveStudio-->Develop-->DDK Building Settings,确保“DDK Root Directory”下方的内容是ddk的安装目录(比如我的是C:WINDDK2600),然后点击下方的"Luanch Program"正式启动vc6的开发环境。   (2).进入菜单File-->Open Workspace(打开位于DriverStudio3.2安装目录的DriverWorksSourcevdwlibs.dsw)-->进入菜单Build-->batch Build,点击“Select x86"按钮只选中全部的32位库(我的电脑是32位的。注意:对于32位的电脑一定不要选中64位的库,否则后面编译会出错)-->点击按钮"Rebuild AlL”开始编译。   注:如果出现无法打开文件这类的错误,一般都是DDK Build Settings指向不对,或安装顺序有误,或者你在32位机器上选中了64位库。 4.编译一个DriverStudio自带的实例   (1)"启动vc6,点击菜单File-->Open Workspace,打开项目文件C:Program FilesCompuwareDriverStudioDriverWorksExampleswdmhellowdmHelloWdm.dsw,然后编译,如果没有报错,那说明安装和配置成功。但请你别高兴的太早,开发环境安装配置成功只是万里长城的第一步,剩下的你就是要理解驱动模块的架构和具体的代码编写了。 5.使用Driver wizard生成驱动程序框架   (1).在VC6.0的界面下,点击菜单DriverStudio-->Driver wizard,此后系统会一步一步引导你完成设置,最后自动生产的驱动程序框架。   (2).设置好后将生成驱动文件,然后用VC6.0进行编译:进行Build菜单,Rebuild AlL将生成.sys文件,说明驱动模块编译成功!   注:如果出现无法打开ntstrsafe.lib的错误,说明系统缺少这个库文件,参照上面的方法补上这个库文件,或者进入菜单Project-->Settings,鼠标点击左边方框里的最上面一行,然后右边"Project Option"下的ntstrsafe.lib并删除它。 本文是转来的,经过我的验证可以搭建成功。有些软件下载可能需要到其他地方下载。希望各位开发的兄弟姐妹Enjoy yourself.
Platform: | Size: 64512 | Author: cdliqu@163.com | Hits:

[Driver DevelopDriverWizard_src

Description: 驱动开发向导 I came across an article QuickSYS which implements an NT driver framework. That article demonstrates a MFC application that gets a project name as a parameter and creates Visual C++ workspace with NT driver framework. I decided to copy the NT driver framework source and to put it in the Visual Studio project wizard as seen above. This is simpler rather than running an external executable application that generates the code for you.-Wizard-driven development I came across an article QuickSYS which implements an NT driver framework. That article demonstrates a MFC application that gets a project name as a parameter and creates Visual C++ Workspace with NT driver framework. I decided to copy the NT driver framework source and to put it in the Visual Studio project wizard as seen above. This is simpler rather than running an external executable application that generates the code for you.
Platform: | Size: 17408 | Author: 周惠 | Hits:

[Othera

Description: 网络驱动程序设计指南 网络驱动程序设计指南的向导 内核模式驱动程序的网络结构 网络驱动程序编程要点 第一章 网络驱动程序设计指南的向导 这一章为网络驱动程序设计指南提供了一个导航,它将以你将编写的内核模式网络驱动程序的类型为基础,告诉你需要参见这个指南的哪些部分。 -Network Driver Network Driver Design Guide Design Guide Kernel-mode Driver Wizard network elements Network Driver Programming Network Driver chapter of the wizard design guidelines in this chapter for the Network Driver Design Guide provides a navigation, it will you will be prepared to kernel-mode driver for the type of network-based, to tell you need to see which parts of this guide.
Platform: | Size: 362496 | Author: | Hits:

[SCMDT128_D12_DriverStudio

Description: 用DriverStudio 3.2的DriverWizard向导制作的PDIUSBD12读写驱动程序(控制器使用飞思卡尔单片机MC9S12DT128B),并附带测试的应用程序,实现了读写In和Out功能以及厂商请求功能Vendor Request,工程内附带Inf文件和DriverStudio工程xml配置文件,可以自行修改,希望能帮到大家,共同进步-DriverStudio 3.2 using the Wizard DriverWizard produced PDIUSBD12 driver to read and write (single-chip controller to use Freescale MC9S12DT128B), and attached to the test application, achieved a reading and writing In and Out functions, as well as the request features vendors Vendor Request, projects Inf attached documents and DriverStudio works xml configuration file, you can make its own decisions, I hope to help everyone make progress together
Platform: | Size: 3875840 | Author: 林克 | Hits:

[Driver DevelopDriverWizard

Description: Windows环境下的驱动程序向导程序设计-Windows environments Driver Wizard program design
Platform: | Size: 20480 | Author: crishal Huang | Hits:

[Driver DevelopDriverWizard

Description: 这是用VC开发的驱动程序向导,是偏向低层开发的,感觉不错-This is developed by VC driver wizard, is biased towards low-rise development, feeling good
Platform: | Size: 3369984 | Author: 游云 | Hits:

[Driver DevelopDriverstudio_code_for_d12

Description: 这是一个用DriverStudio写的用于D12-USB驱动的程序,其中带有测试程序,可实现读写-This is a used DriverStudio written for D12-USB-driven process, in which a test procedure, can be read and write
Platform: | Size: 1738752 | Author: richyhuang | Hits:

[Driver DevelopISP1581_DriverWinzard

Description: 用DriverStudio 3.2的DriverWizard向导制作的ISP1581读写驱动程序,并附带测试的应用程序,实现了Bulk读写In和Out功能以及厂商请求功能Vendor Request,工程内附带Inf文件和DriverStudio工程xml配置文件,可以自行修改,希望能帮到大家,共同进步-DriverStudio 3.2 using the Wizard DriverWizard produced ISP1581 driver to read and write, and ancillary testing applications, the realization of the Bulk to read and write In and Out functions, as well as the request features vendors Vendor Request, attached to the project Inf documents and DriverStudio works xml configuration file, you can to make its own decisions, I hope to help everyone make progress together
Platform: | Size: 1018880 | Author: 林克 | Hits:

[Windows DevelopWindowsWDM

Description: 本压缩文件关于Windows2000/XP的WDM设备驱动程序开发 实现: 建立WDM驱动程序开发环境; 生成WDM驱动程序并安装,运行测试程序; 利用向导自行创建一个WDM驱动程序,并生成、安装和测试。 -Windows2000/XP the compressed file on the WDM device driver development to achieve: the establishment of WDM driver development environment generation WDM driver and install, run test procedures use the wizard to create a WDM driver, and generate, installation and testing.
Platform: | Size: 12312576 | Author: 王晓 | Hits:

[Internet-NetworkDriverWizard

Description: 用C++实现的网络驱动程序向导代码。可以简单的创建一个工作区,并从工程中选择一个类型作为客户应用-Implemented using C++ code for the network driver wizard. You can simply create a work zone and choose a type from the project as a client application
Platform: | Size: 13201408 | Author: shi | Hits:

[File OperateMyDrivers

Description: 主要是介绍驱动备份,自己做系统或重装系统时,可用驱动精灵把需要的重要的文件备份一份。-Is to introduce the drive back up, make their own system or reinstall the system, the available driver wizard to need a backup of important files.
Platform: | Size: 60183552 | Author: Jenny | Hits:

[USB developBlueCore_DFU

Description: CSR蓝牙在线升级的全套资料,通过USB DFU(设备固件升级)来实现-Adding Support for Device Firmware Upgrade to a USB Device Driver
Platform: | Size: 3526656 | Author: xujifuji | Hits:

[USB developPL2303HX

Description: 一个USB-232的驱动,可以按照里面的要求按装-a driver for USB-232,you can use it as what it is say.if it does not well,you can try again!
Platform: | Size: 5096448 | Author: 戴时锋 | Hits:

[Driver DevelopDriver

Description: 驱动开发向导工程,快速创建驱动开发工程,包括NT式和WDM式-driver development wizard,easyily,create sample source for drive
Platform: | Size: 45056 | Author: liming | Hits:

[EditorKext-Wizard

Description: 苹果驱动安装文件,使用方法可以GOOGLE搜索获得-Apple driver installation
Platform: | Size: 1259520 | Author: liufuzhou | Hits:

[LabViewNI-VISA-USB-driver

Description: 可以通过向导自动开发USB驱动,Labview可以进一步直接调用USB设备。-Wizard automatically developed by the USB driver, Labview can further direct calls USB device.
Platform: | Size: 146432 | Author: 黄艳飞 | Hits:

[Linux-Unixclk-xlnx-clock-wizard

Description: Xilinx Clocking Wizard driver. -Xilinx Clocking Wizard driver.
Platform: | Size: 3072 | Author: lenggenpu | Hits:

[Com PortAMSAMOTION

Description: 插上电缆,在设备管理器看下串口芯片型号,下载对应型号驱动,或者直接用驱动精灵补下缺少的驱动(Plug in the cable, in the device manager to see the serial chip model, download the corresponding model driver, or directly use the driver wizard to fill the missing drive)
Platform: | Size: 182272 | Author: ayjl | Hits:

[OtherJungo.WinDriver.10.1.0.Windows.x64

Description: Windriver Driver Wizard for Windows 7
Platform: | Size: 16896000 | Author: 3wnj9u3 | Hits:
« 12 3 »

CodeBus www.codebus.net