Welcome![Sign In][Sign Up]
Location:
Search - win xp driver

Search list

[Driver DevelopTUSB3410sscr

Description: TUSB3410 win9x和win xp 驱动源代码,包含开发测试工具-TUSB3410 win9x and win xp driver source code, includes the development and testing tools
Platform: | Size: 2058929 | Author: 赵仪峰 | 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 DevelopTUSB3410sscr

Description: TUSB3410 win9x和win xp 驱动源代码,包含开发测试工具-TUSB3410 win9x and win xp driver source code, includes the development and testing tools
Platform: | Size: 2058240 | Author: | Hits:

[Communicationsoftware_release

Description: TOP PORT (USB) 调试接口说明 本接口是利用PL-2303HX的USB转RS232的接口芯片设计实现了一个TTL(5V)的RS232串口,并且利用了PL-2303HX的2个GPIO口软件模拟了一个低速的I2C总线.该接口由USB接口提供5V电压,可自带2Kbit(24C02)数据备份EEPROM (单独读写通道,不占用I2C总线地址)。并可对外提供小于250mA的5V电压。尤其适合WIN-XP以后的没有并口和串口笔记本电脑。整机成本不到¥20RMB。 -TOP PORT (USB) interface debugging of this interface is the use of PL-2303HX the USB to RS232 interface chip design to achieve a TTL (5V) of the RS232 serial port, and use of PL-2303HX the two GPIO port software simulation of a low-speed I2C bus. The interface from the USB interface to provide 5V voltage, can bring their own 2Kbit (24C02) data backup EEPROM (separate read and write access, do not occupy I2C bus address). And may provide less than 250mA of 5V voltage. WIN-XP is particularly suitable for subsequent parallel and serial no notebooks. Machine costs less than ¥ 20RMB.
Platform: | Size: 2979840 | Author: 季超 | Hits:

[OS programUSBSer

Description: WINCE 下USB 串口驱动,能运行,有参考价值-USB Serial Driver on wince platform
Platform: | Size: 24576 | Author: 朱文浩 | Hits:

[Software Engineeringjida32

Description: JIDA32 DEMO for Windows 9x/NT/2000/XP/Vista/CE, Linux, VxWorks -1. Purpose: ----------- JIDA is an API that provides control over many Kontron Embedded Modules specific board features. 2. Files/Directories: --------------------- \Jida32.pdf \ReadMe.txt \inc\Jida.h \inc \src \src\JidaTst \src\JidaTst\WinCE \src\JWDogTst \src\JWDogTst\WinCE \src\JidaDemo \Win9xNT \Win9xNT\bin \Win9xNT\lib \WinCE \WinCE\bin \WinCE\lib 3. Demo Installation: --------------------- For full information please refer to JIDA32.PDF Windows 9x, Windows NT, Windows 2000, Windows XP, and Windows Vista: ----------------------------------- Run the sample JidaTst.EXE in the \Win9xNT\bin directory which will dynamically install the drivers. Under Win NT/2000/XP/Vista you need Admin rights to install the drivers for the first time. For Win 98/ME copy the jidan.sys to the windows\system32\drivers directory. The driver***MUST*** be in that directory. If had an older version installed then DO NOT load the jidav.vxd anymore. T
Platform: | Size: 278528 | Author: Hunt | Hits:

[Driver Developusbdiskencrar

Description: 主要是U 盘加密的。可以对U盘 进行加密,是一个难得的例子-Files Description: DD\EDDrv.c: The on-the-fly encryption/decryption filter driver. DD\EdDrv.h: Main header file for the above. DD\IoctlCmd.h: Containing the IOCTLs for the driver. DD\EdDrv.lib: The library file containing the core of FastIO and Memory mapped file IO handling DD\EDDrvLib: Header file for the above library. DD\Makefile: Makefile for the driver. DD\Sources: Sources file for the driver. The current build has been done using Windows XP DDK checked build environment. Also since the domain name--against which the retrieved domain name is to be matched--is currently hard coded. Hence the hard coded name has to be change before compiling the user mode program The .lib file which has been provided in \DD\DD folder is checked built using Win XP DDK as of now.
Platform: | Size: 6766592 | Author: kennethroger | Hits:

[OS programinpout32_source_and_bins

Description: -- FILES/FOLDERS--- readme.txt this file binaries\ executables of the source code provided hwinterface_ activex_control_source\ Source code and project files of hwinterface activex control Inpout32_dll_source\ Source code and project files of Inpout32.dll for WIN 9x/NT/2000/XP kernel_mode_driver_source\ source code of kernel mode driver used in this project test applications\ test applications copy inpout32.dll to system directory before running test program send queries and doubts to logix4u mail ID found at homepage visit http://www.logix4u.net no explicit licence is neede to use this dll for non - commercial applications. for commercial applications , contact the webmaster - -- FILES/FOLDERS--- readme.txt this file binaries\ executables of the source code provided hwinterface_ activex_control_source\ Source code and project files of hwinterface activex control Inpout32_dll_source\ Source code and project files of Inpout32.dll for WIN 9x/NT/2000/XP kernel_mode_driver_source\ source code of kernel mode driver used in this project test applications\ test applications copy inpout32.dll to system directory before running test program send queries and doubts to logix4u mail ID found at homepage visit http://www.logix4u.net no explicit licence is neede to use this dll for non- commercial applications. for commercial applications , contact the webmaster
Platform: | Size: 74752 | Author: andrew | Hits:

[VHDL-FPGA-VerilogPCIE_V5

Description: PCIE_V5是一个完整的VC工程,用于xilinx Virtex5 FPGA的PCIe板卡下DMA数据读取,只能在Win xp下运行,板卡的驱动程序需要安装WinDriver-PCIE_V5 is a VC++ project, which is used to ingress massive data from PCIe board based on Virtex5 FPGA through DMA interface. Install Windriver to offer the board driver
Platform: | Size: 21005312 | Author: dongtian | Hits:

[Driver DevelopIPRedirect

Description: 使用ndis 中间层进行数据包转发. win xp包括起操作系统x86和x64都支持 IP Packet Redirector Driver 驱动 -IP Redirect with ndis driver
Platform: | Size: 6844416 | Author: charlie | Hits:

[Embeded LinuxDNW--usb-driver

Description: 这是DNW usb 驱动安装包,适合于XP win 7 32位64位,并有教程。-This is DNW usb driver installation package, suitable for XP win 7 32-bit 64-bit and tutorials.
Platform: | Size: 1256448 | Author: 局外 | Hits:

[SCMPL2303_VISTA_WIN7_x64Driver

Description: PL2303 64位驱动,适用VISTA/WIN7/WIN8。XP系统请下载PL2303-Driver_XP2K_v204102-PL2303 x64 driver, for VISTA/WIN7/WIN8. If you are under Win XP, please download PL2303-Driver_XP2K_v204102
Platform: | Size: 1702912 | Author: noahzark | Hits:

[Software EngineeringUSB-Driver-EV2300-Installer-XP2K

Description: ev2300 win xp drivers update 2014
Platform: | Size: 537600 | Author: Robert | Hits:

[VHDL-FPGA-VerilogDrivers_USB_TELIUM-PC

Description: usb ingenico driver EFT930 for win xp
Platform: | Size: 1212416 | Author: kira | Hits:

[Othericexplorerw_T

Description: icexplor/t仿真器驱动,韦福仿真器驱动,仿真器用驱动。仿真器win7驱动,仿真器win XP驱动,仿真器驱动。-icexplor/t emulator driver, Weifu drive emulator, emulator uses the drive. Win7 drive emulator, emulator win XP driver, emulator driver.
Platform: | Size: 1410048 | Author: zhou | Hits:

CodeBus www.codebus.net