WinDriver USB enables developers to quickly develop high-performance drivers for USB-based devices without having to learn the USB specifications and operating system internals, or use the operating system development kits. For example, Windows drivers can be developed without using the Windows Driver Kit (WDK) or learning the Windows Driver Model (WDM).
The driver code developed with WinDriver USB is binary compatible across the supported Windows platforms — Windows 8/7/Vista/Server 2008/Server 2003/XP — and source code compatible across all supported operating systems — Windows 8 / 7 / Vista / Server 2008 / Server 2003 / XP, Windows CE (a.k.a. Windows Embedded Compact) 4.x–7.x (including Windows Mobile), and Linux. For an up-to-date list of supported operating systems, visit Jungo's web site — http://www.jungo.com.
WinDriver USB is a generic tool kit that supports all USB devices from all vendors and with all types of configurations.
WinDriver USB encapsulates the USB specification and architecture, letting you
focus on your application logic. WinDriver USB features the graphical DriverWizard
utility
After your hardware is diagnosed, you can use DriverWizard to automatically generate your device driver source code in C, Visual Basic .NET, or C#. WinDriver USB provides user-mode APIs, which you can call from within your application in order to implement the communication with your device. The WinDriver USB API includes USB-unique operations such as reset of a pipe or a device. The generated DriverWizard code implements a diagnostics application, which demonstrates how to use WinDriver's USB API to drive your specific device. In order to use the application you just need to compile and run it. You can jump-start your development cycle by using this application as your skeletal driver and then modifying the code, as needed, to implement the desired driver functionality for your specific device.
DriverWizard also automates the creation of an INF file that registers your
device to work with WinDriver, which is an essential step in order to correctly
identify and handle USB devices using WinDriver. For an explanation on why you
need to create an INF file for your USB device, refer to
With WinDriver USB, all development is done in the user mode, using familiar development and debugging tools and your favorite compiler or development environment (such as MS Visual Studio, MS eMbedded Visual C++, MS Platform Builder C++, GCC, Windows GCC).
For more information regarding implementation of USB transfers with WinDriver,
refer to