Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

WinDriver FAQs

Questions

 

General Starters Questions

* Refer also to the General Starters Technical Documents.


Pricing and Licensing Questions

* Refer also to the Licensing and Distribution Technical Documents.


General Technical Information Questions

* Refer also to the WinDriver Technical Documents.

  • What is the Debug Monitor utility and how do I use it?
  • My application hangs the system, so I cannot see the debug information in the Debug Monitor log.
    Is there away to save the debug information in case of a system hang/crash?
  • Can I debug code easily using MS Visual Studio (Visual C++)?
  • I need to define more than 20 “hardware items” (I/O, memory, and interrupts) for my ISA card. Therefore, I increased the value of in the
    windrvr.h header file (due to the definition of the member of the structure as an array of structures).
    But now will not work. Why?
  • I installed the registered version of WinDriver. Now my sample programs, which are supplied by Jungo (PCI Bus Diagnostics, Parallel Port Sample, etc.), do not work.
    What is the problem?
  • My memory transfer routines are too slow. Can I speed them up?
  • I have installed my driver on a target machine and there are some problems that don't occur on my development machine.
    Can I run the Debug Monitor utility on a target machine as well, or only on the development machine?

Kernel PlugIn Questions

* Refer also to the Kernel PlugIn Technical Documents.

Windows Questions

* Refer also to the Windows Technical Documents.


Windows CE Questions

* Refer also to the Windows CE Technical Documents.


Linux Questions

* Refer also to the Linux Technical Documents.


CardBus Questions

* Refer also to the CardBus Technical Documents.


Parallel/Serial Port Questions

* Refer also to the Serial/Parallel Port Technical Documents.


Interrupt Questions

* Refer also to the Interrupts Technical Documents.


DMA Questions

* Refer also to the DMA Technical Documents.



Answers

General Starters FAQs



With WinDriver I don’t have to program in the kernel mode. So I’m not really creating a driver, am I?

A device driver is a software module that controls hardware. In today’s operating systems, this software module usually resides in the kernel mode (ring 0). However, WinDriver enables you to write this code in the user mode, utilizing our lower-level kernel driver(s), and thus frees you from the need for any driver development knowledge. For a better understanding of the basic WinDriver architecture, refer to the WinDriver User's Manuals.

WinDriver also includes the Kernel PlugIn feature, which allows you to ‘drop’ sections of your user-mode code into the kernel mode for better performance and greater flexibility (for PCI/CardBus/PCMCIA/PCI Express/ISA).
Whether the code you develop resides in the user mode or the kernel mode, it is still the code driving the hardware, and therefore it is a driver (but you can call it anything you like …).



Why should I buy WinDriver and not develop a device driver on my own?

Using WinDriver, you gain the following benefits:

    • Cost — Save 90% of the development time.

 

    • Reliability — WinDriver has been market tested thoroughly in thousands of applications (see the Customer Success Stories page for more on this). It has been debugged on almost every platform in the market. Therefore it not only speeds your development time, but cuts your debugging time as well.

 

    • Time to market — WinDriver is ready for you today. Using WinDriver will drastically shorten your development cycle.

 

    • Flexibility — WinDriver supports multiple operating systems, such as Windows 10/8.1/Server 2016/Server 2012 R2/8/Server 2012/7/Server 2008 R2/Server 2008/Server 2003/XP, Embedded Windows 10/8.1/8/7, Windows CE/Mobile, and Linux (depending on the version you are using) — so even if you only need your driver on one platform today, using WinDriver gives you the flexibility of running under any platform tomorrow. (Please refer to Technical Document 4 for a list of the supported operating systems for each type of hardware — PCI/ISA/USB).

 

  • Stability — WinDriver keeps you away from the OS kernel. While our pre-written kernel module is doing all the transactions with your hardware, you write your code in the protected application mode. This way you get a kernel mode driver (written by our experienced developers), which was tested on practically any OS/platform/BIOS combination available and was found rock stable.



Must I have experience in device driver or kernel programming?

Not at all. With WinDriver, you are coding your device driver in the user mode. WinDriver already provides you with the low-level kernel mode driver, which implements the WinDriver API (see the WinDriver architecture overview in the WinDriver User's Manuals). You can, therefore, use your favorite development
environment to program and debug your driver, in the user mode, thereby
drastically decreasing your device driver development time.

Recommended development steps:

    1. Start DriverWizard — WinDriver/wizard/wdwizard (or /Applications/wdwizard.app on Mac OS X — in WinDriver versions that support this OS). On Windows, you can also run the DriverWizard using the shortcut icon on your desktop, or from Windows’ menu: .

 

    1. Use the graphical DriverWizard to easily diagnose your hardware, without writing a single line of code. For PCI/ISA — read/write the hardware resources (memory/IO/registers) and listen to interrupts.
      For USB — transfer data on the pipes, reset the device, etc.

 

    1. Select the “Generate Code” option from the toolbar, or press the Next button. Select your target compiler/development environment, and let the DriverWizard create a skeleton of a device driver application for your device. The generated code will include convenience structures and functions, which utilize WinDriver’s basic API to access the resources detected and defined (by you) for your hardware.You can use the DriverWizard to generate code in C, C#, or Visual Basic .NET (VB.NET) (USB only); earlier versions (until v11.2.0) also supported code generation in Delphi (Pascal) or Visual Basic (VB 6.0). The DriverWizard will also create makefiles and the relevant build environment for leading 32-bit and 64-bit compilers — such as MS Visual Studio, GCC, or Windows GCC MinGW/Cygwin.You can also use one of the WinDriver samples as the basis for your development. Specific samples for enhanced-support hardware can be found under the relevant directory for that hardware, such as PLX and Altera; see the WinDriver User's Manuals for your version of WinDriver for more information regarding WinDriver’s enhanced support for specific chip sets.
      General samples, in C, can be found in the WinDriver/samples directory.
      .NET samples are found in the WinDriver/csharp.net (C#) and WinDriver/vb.net (VB.NET) directories (beginning with v7.0.0 of WinDriver).

 

    1. Use the manual and help files to modify the generated diagnostics code and add the specific functionality that you need (if any), in accordance with your hardware’s specification.
      The WinDriver user’s manuals and help files are found in the WinDriver/docs directory and can also be accessed via Windows’ Start menu (for Windows users). All documents are also available online from the WinDriver Support page.

 

  1. Compile and build your code (from the user mode!) using any 32-bit or 64-bit compiler.

DONE!



Can I try before I buy?

Yes. Jungo Connectivity provides full-featured evaluation versions of the WinDriver toolkit. You can download trial versions from our site.
The limitations of each evaluation version (as compared with the registered version) are outlined in the WinDriver User's Manuals and in Technical Document 9.



Is WinDriver fully backward compatible?

Until v11.5.0 WinDriver was fully backward compatible, except for rare occasions documented in the WinDriver Release Notes. This means that in most cases, code compiled with an earlier WinDriver version would work, without recompilation, with a driver from a newer version, with the possible need to also replace the device INF file on Windows with one from the newer version.
Staring from v11.5.0, when upgrading to a new version of WinDriver you must rebuild your code with a new license string for the new version. The WinDriver API is still for the most part backward compatible, but on occasion you may need to modify your code or project settings when rebuilding it with the header files from a newer version, to accommodate changes done in newer versions.

NOTE
  • The Kernel PlugIn is not backward compatible (in all versions). Therefore, when upgrading to a newer version of WinDriver you must also rebuild your Kernel PlugIn driver (if you have created such a driver) with the new version.
  • It is highly recommended to always use the newest WinDriver API, to fully utilize the improvements introduced in newer versions.

For detailed instructions on how to upgrade your driver to a newer WinDriver version, refer to Technical Document 131.



How do I report a problem effectively?

First, review the support resources available on the WinDriver Support page. If you cannot find an answer to your problem, use our Support Center to report a problem or get any type of product support.
To ensure a quick and effective response, be sure to specify all relevant information, as outlined in the support center and below.
You can also contact us by telephone. If you call outside our office hours, or if all support personnel are occupied, leave your full contact details (name, company name, email, and phone numbers) and we will be sure to contact you shortly.

When reporting a problem, please include a clear description of all the steps you performed, and specify which step failed and what was the exact nature of the failure or erroneous behavior that you encountered (including complete error messages).

Please check specifically that you have included the following information:

      1. In general, please indicate
        • Your operating system. For example: Windows 8 64-bit; Windows XP SP3; Windows Embedded Compact 7, Windows CE v7.0; RedHat Linux 7.2, Linux kernel version 2.6.32-5-686.
        • Your WinDriver version. For example: WinDriver version 14.4.0.
        • The entire output of the Debug Monitor utility: Run the Debug Monitor, set the debug level to “Trace”, reproduce your problem and attach the output from the Debug Monitor window (including the version information at the top).

 

      1. For licensing problems: In addition to the Debug Monitor log, please be sure to specify your full license registration string, which you received when purchasing the software, and your development computer’s registration code. You can view the license registration string and the PC registration code from the DriverWizard’s Licensing Information window ().

 

      1. For PCI related problems: In addition to the Debug Monitor log, please also attach the entire output of the pci_dump utility (found in the WinDriver/util directory), and be be sure to specify your card’s vendor ID and device ID as well.

 

      1. For installation related problems, in addition to the Debug Monitor output, be sure to specify the exact installation steps that you performed (which files were copied to which directories; usage of the wdreg installation utility; installation of INF files; etc.) and the result of each step, and attach a copy of the exact error message that you received (if any).
        On Plug-and-Play Windows platforms (Windows 98 and higher, not including Windows NT 4.0), please also attach a copy of the device INF file that was used in the installation (if any), and a copy of the file from the PC on which the problem occurred.



I installed WinDriver on a Windows PC about 40 days ago and forgot aboutit. Now, when I try to evaluate it I get a message notifying me that theevaluation period expired. Uninstalling and reinstalling the software does nothelp.

Please contact [email protected] to request an extension of the evaluation period. Please also refer to the WinDriver User's Manual and to Technical Document 9 for a description of the evaluation limits of the different WinDriver kits.



I need a driver for a Microsoft Side Winder with USB port. Can youprovide me with a driver for it?

Jungo Connectivity provides tool kits for writing device drivers. We do not provide ready-made drivers for commercial hardware.



How do I uninstall WinDriver from my computer?

To completely remove WinDriver from your computer, follow the WinDriver uninstall instructions on our site.
NOTE: The online uninstall instructions are for the latest WinDriver version. If you are using an older version, follow the uninstall instructions in the WinDriver User’s Manual for your specific version.

Pricing and Licensing FAQs



How do I purchase my WinDriver license?

View the WinDriver prices, and get an online price quote for your specific development needs. Then submit an official quote request (from the same page), and follow the instructions you receive from our representative by email.



What will I receive with my license?

Your registered license will include the registered WinDriver version, official documentation, and 2 months of free product upgrades and technical day support. A single license entitles allows a single developer seat, and royalty free distribution of the driver with a single VID/PID and SKU end product.



How do I get technical support and maintenance after 2 months?

To get technical support or be eligible for version upgrades after the expiration of the complimentary two-months support and upgrade period, you must subscribe to the WinDriver annual Support and Upgrade plan. You can subscribe to this plan from the WinDriver price quote page.
For more information on this plan, refer to the WinDriver Support and Upgrade plan page.
The prices of the support plans are derived from the prices of the original WinDriver licenses. As you will be able to see, it is much cheaper to subscribe to the upgrade and support plan during the period of a valid Support and Upgrade plan (including the 2-months complimentary support and upgrade period). Once you subscribe to this plan, use Jungo Connectivity‘s Support Center to contact our support team at any time. Please also refer to FAQ #lfc to find out how to report a problem effectively.



What does a single WinDriver license cover in terms of development and distribution?

A single WinDriver license allows development on one PC, of a single application (SKU) for a single VID/PID board. Distribution of the WinDriver redistributable components is allowed only for the SKU/VID/PID. Each additional SKU/VID/PID requires a separate WinDriver license. In addition, no API/SDK distribution is allowed – this requires a separate WinDriver license.



How many copies of my application can I distribute, after developing it with WinDriver? Must I pay royalties?

After purchasing the license from Jungo Connectivity, the executable/DLL that you create can be distribute royalty free as part of your application, in as many copies as you wish, provided you have purchased the appropriate licenses. License(s) for VID/PID, OS and Architecture should be purchased. Note such royalty-free distribution is only for Application SKU and VID/PID you have purchased license for. Furthermore, you may not expose any API/SDK in your application, or enable any sort of development on top of it – this requires a separate SDK license from Jungo Connectivity. For more information, take a look at the Distributing Your Driver — Legal Issues Appendix in the WinDriver User's Manual or contact [email protected].



After registering my evaluation version of WinDriver, my WinDriver application (which worked with the evaluation version) does not work unless I first run the DriverWizard. Once I reboot the PC, the program stops working again, until I start the DriverWizard. This is also true for the WinDriver sample programs. What is wrong?

When using a registered version of WinDriver, you must register your specific license registration string from the code.

The generated DriverWizard code for the registered toolkit will already include the relevant code for registering your license (provided you have activated your license from the wizard before generating the code). However, if you used the DriverWizard to generate the code during the evaluation period, or if you are using one of the WinDriver samples, you will need to add the registration code yourself.

Note that after the initial registration of the license from the DriverWizard, your license string will automatically be activated with every session of the wizard. This is the reason that you have found that your code seems to work if you first run DriverWizard (since the license was already registered from the wizard, even though it was not explicitly registered from the code).

Please refer to the description of (USB) / (PCI/ISA) in the WinDriver User's Manuals to learn how to correctly register your license registration string from the code.
If your codes uses the low-level APIs instead of the WDU or WDC APIs, use the function to register your license string. WD_License() is described in the WinDriver PCI Low-Level API Reference (WinDriver/docs/wdpci_low_level_api_ref.pdf) in v8.0.0 and above of WinDriver. In earlier versions the function is described in the WinDriver User’s Manual, which is found under the WinDriver/docs/ directory for the specific version. (If you are using version 5.0.5b or earlier of WinDriver, you can refer to the WinDriver/redist/register/register.txt file for relevant registration instructions).

Beginning with version 5.2.0 of WinDriver, the generated DriverWizard evaluation code already includes the required license registration code, but using a demo license string. When moving to a registered version you simply need to replace the demo license string that is used in the call to / / in the evaluation code with your specific license registration string.

NOTE: Make sure that your code calls the license registration function before any other WinDriver API call (apart from or , when using the low-level WD_xxx APIs).



I developed a driver with WinDriver, but it only runs on the development machine that I used to create the driver. How can I distribute the driver to other machines?

When installing WinDriver, the only thing that will be locked to one machine is the development environment — i.e., the DriverWizard. Once you have written and built your code, you may install and run it on any machine you want. The device driver you create using WinDriver is yours to distribute in as many copies as you wish, royalties free, provided you do not distribute your own driver development kit (see the following FAQ: FAQ #MIP).
To find out how to distribute the driver you developed with WinDriver, review the driver distribution chapter in your WinDriver User’s Manual, and the distribution technical documents.
Note that before you distribute your driver you must register your license registration string from the code, as explained in the manual and in FAQs #reg1 and #lfc19.

General Technical Information FAQs



What is the Debug Monitor utility and how do I use it?

The Debug Monitor (a.k.a. Monitor Debug Messages, in older WinDriver versions) is an application program that logs detailed debugging information from the WinDriver kernel driver(s). This application is available in two versions: wddebug_gui — a fully graphical version; and wddebug — a console-mode version, which also supports GUI execution on Windows CE platforms (beginning with v10.0.1 of WinDriver).
Both versions of the Debug Monitor can be found at WinDriver/util; (on Mac OS X, in WinDriver versions that support it, the GUI version can be found in the OS’s /Applications folder).
For detailed information on this utility and how to use it, refer to the WinDriver User's Manuals and to Technical Documents 12 (wddebug_gui for Windows, Mac OS X, Linux, and Solaris), 13 (wddebug for Windows, Windows CE (including Windows Mobile), Mac OS X, Linux, and Solaris), and 14 (wddebug for VxWorks — last supported in WinDriver v5.2.2).
For information regarding redirecting debug information from the Debug Monitor to a kernel debugger, refer to Technical Document 44.

NOTE: The Debug Monitor can also be run on target platforms on which only on the WinDriver driver(s), and not the entire WinDriver toolkit, have been installed. This can be useful, for example, for debugging problems on your customers’ platforms, as explained in FAQ #lfc6009.



My application hangs the system, so I cannot see the debug information in the Debug Monitor log. Is there a way to save the debug information in case of a system hang/crash?

Yes. You can select to send the debug information from the Debug Monitor to a kernel debugger, as explained in Technical Document 44. In addition, beginning with version 11.7.0 of WinDriver you can select to auto-save the Debug Monitor log, so it will be available to you after you restart the OS.
On Windows, in order to send the debug information to a kernel debugger you will first need to install the kernel debugger on another PC and establish a debug session between this PC and your development PC. For more information on what to do in case of a crash on Windows, refer to Technical Document 21.
On Linux you will find the kernel debugger log in the /var/log/messages directory.



Can I debug code easily using MS Visual Studio (Visual C++)?

YES! The code of the device driver you write runs in normal Win32 user mode. Therefore, you can compile and debug your code using MS Visual Studio / Visual C++.
Please refer to Technical Document 19 for more information regarding debugging your driver code with WinDriver.



I need to define more than 20 “hardware items” (I/O, memory, and interrupts) for my ISA card. Therefore, I increased the value of in the windrvr.h header file (due to the definition of the member of the structure as an array of structures).
But now will not work. Why?

If you need to define more than items for your card (currently 20 items, according to the definition of in windrvr.h), do not modify the value of in the code, but instead, simply call several times from your code, with different items each time. (It is not mandatory to lock all the resources on a specific card with a single call.) Alternatively, consider grouping several memory/IO address ranges into a single BAR definition, so that the overall resources item count does not exceed the default 20 items limit.

Please do not change anything in windrvr.h. The affect will certainly not be what you expect and it could be potentially disastrous.



I installed the registered version of WinDriver. Now my sample programs,which are supplied by Jungo (PCI Bus Diagnostics, Parallel Port Sample, etc.),do not work. What is the problem?

The sample programs were written with the evaluation version in mind (so that they can be distributed and used without a license during the evaluation period). You can modify their source code in order to register your license registration string from the code — as explained in FAQ #reg1.



My memory transfer routines are too slow. Can I speed them up?

You can replace the calls to with direct memory access, by utilizing the virtual user mode mapping of the base physical address for the relevant memory range, which is returned by in: (where ‘i’ is the index number of the memory base address in the ‘‘ array).
This is documented in the WinDriver User's Manuals (see the description of in the Function Reference chapter and the Improving Performance chapter) and in Technical Documents 74 and 17. Technical document 17 also includes other suggestions on how you might improve your driver’s performance with WinDriver.



I have installed my driver on a target machine and there are some problems that don’t occur on my development machine. Can I run the DebugMonitor utility on a target machine as well, or only on the development machine?

WinDriver’s Debug Monitor utility can run on any machine (unlike the WinDriver DriverWizard utility, which is locked down to the development machine). Therefore, you can simply copy the wddebug_gui or wddebug program file from the development machine (from WinDriver/util or from /Applications on — in WinDriver versions that support this OS), to a target machine on which the WinDriver driver(s) have been installed, and run the Debug Monitor on the target. For detailed information regarding the Debug Monitor utility, refer to the WinDriver User's Manuals and to the Debug Monitor FAQ.

Kernel PlugIn FAQs



Is the Kernel PlugIn free? How do I obtain a license to use it?

The Kernel PlugIn is an integral part of the WinDriver PCI/ISA toolkit.
No additional license or payment is required in order to use it.



Do I need Microsoft’s driver development kit to build a Kernel PlugIn project?

If you are using Kernel PlugIn to develop a Windows SYS driver, you need to install Microsoft’s Windows Driver Kit (WDK), or the earlier Driver Development Kit (DDK) — depending on your target OS and WinDriver version — in order to successfully build your Kernel PlugIn driver.
For information regarding acquiring the WDK, refer to //www.microsoft.com/whdc/devtools/WDK/WDKpkg.mspx.
(Note that when using the WDK/DDK to build your Kernel PlugIn driver, you will also need to set the or environment variable to the location of your DDK library, as explained in the WinDriver User's Manual.)

Development of VxD Kernel PlugIn drivers, which was supported for Windows 98/Me in earlier versions of WinDriver (v6.0x-), does not require you to install Microsoft’s WDK/DDK in order to successfully build the driver, unless you choose to add your own DDK function calls to your Kernel PlugIn application. (Note that using OS-specific DDK functions can damage the driver’s portability).



How many interrupts can we expect to service in one second (typical)?

Using WinDriver’s Kernel PlugIn feature, you can expect to handle more than 100,000 interrupts per second, without missing any of them.
For sample Kernel PlugIn interrupt handling code, use the DriverWizard to generate code for your device (for PCI and PCMCIA devices, define the data for clearing the interrupt in the wizard before generating the code), or take a look at the WinDriver Kernel PlugIn sample code — KP_PCI (WinDriver/samples/pci_diag/kp_pci — v7.0.0+) or KPTEST (WinDriver/kerplug/kptest/kermode — v6.2.3-a).

In the user mode you can handle around 5,000-10,000 interrupts per second, but since Windows is not a Real Time OS, you might miss some of the interrupts once in a while (although WinDriver tells you when you have missed an interrupt and how many interrupts were missed).

For an explanation regarding interrupt latency with WinDriver, refer to Technical Document 48.



Is the driver code always locked into physical memory?

Yes.



How do I allocate locked memory in the kernel, which can be used from within the Kernel PlugIn interrupt routines?

WinDriver implements and for kernel mode memory allocation (see Technical Document 34).
Since the allocated memory is locked, you can also use this memory in your Kernel PlugIn interrupt routines.
You can also share a memory buffer between the user mode and Kernel PlugIn applications — as explained in Technical Document 41.



When handling my interrupts entirely in the Kernel PlugIn, can I erase the interrupt handler in the user mode?

Yes — You can erase the user mode interrupt handler routine.
You can also implement some of the interrupt handling in the Kernel PlugIn and some of it in the user mode. The return value of (which is called when the high-priority routine returns ) determines the number of times that the user mode interrupt handler routine will be executed (if at all).



Can I use the Kernel PlugIn feature to write a SYS Windows driver file?

Kernel PlugIn enables you to create an add-on *.sys/.o/.ko kernel driver — depending on your OS — to extend the features of WinDriver for your needs. The Kernel PlugIn driver your create is not standalone — it can only work together with a user-mode driver that activates it.

Note that when using WinDriver’s Kernel Plug In feature, you must also install the WinDriver kernel module for your WinDriver version and target OS — windrvr<version>.sys/.o/.ko since WinDriver v11.9.0 (e.g., windrvr1440.sys/.o/.ko) or a renamed version of this driver.



How can I print debug statements from the Kernel PlugIn that I can view using a kernel debugger, such as WinDbg?

You can use WinDriver’s function (available from v5.0.3 and above) to print debug messages from your Kernel PlugIn or user-mode code to the Debug Monitor utility, and then view the messages in the Debug Monitor log. can be called from within any user-mode or Kernel PlugIn function, including .

You can also select to send the debug information from WinDriver’s Debug Monitor to a kernel debugger, as explained in Technical Document 44.

In addition, you can add calls in your Kernel PlugIn code to OS kernel functions that print directly to the kernel debugger — such as on Windows,
or on Linux.



My PC hangs while closing my application. The code fails in . Why is this happening?I am using the Kernel PlugIn to handle interrupts.

This might happen if you are enabling the interrupt from your Kernel PlugIn interrupt routines, and simultaneously disabling it from the user mode (using or / — which call ). Since the interrupt is active (having been enabled from the Kernel PlugIn), the interrupt cannot be disabled and the PC hangs waiting for to return.

A possible solution, is to call as an atomic operation, so that it will disable the interrupts successfully before the Kernel PlugIn interrupt routine enables the interrupt.



When I install my Kernel PlugIn module I get errors regarding unresolved symbols.

Refer to FAQ #kplinux for the answer to this question.



If I write a new function in my SYS Kernel PlugIn driver, must it also be declared with ?

No. Only the callbacks used by WinDriver need to be declared as .

Windows FAQs



What is A WDM device driver and does WinDriver support WDM?

When writing device drivers, developers must write a separate device driver for the Win 9x and the Win NTx kernels. Microsoft has developed a cross-platform operating system support for input devices, in order to provide a uniform way for code to access such devices across Plug-and-Play Windows platforms (Windows 98 and higher, not including Windows NT 4.0). This new support is known as Windows Driver Model or “WDM”. WDM is based on the original Windows NT driver model, with modifications to support Plug-and-Play and power management, and is used for most multimedia device types and many other newer device types, such as USB and 1394 devices.
Beginning with version 5.2.0 of WinDriver, WinDriver’s kernel module, which implements WinDriver’s API, is a full WDM driver.



When installing a WinDriver-based driver on a Windows XP machine, Windows displays this error:

Is this a problem? How can I avoid such messages?

This message is not actually an error message and is not an indication of any problem in the installation process or with the driver. This message is issued by Microsoft’s Windows XP to indicate that the driver was not tested and digitally signed by Microsoft’s Windows Certification Program (previously known as the Windows Logo Program (WLP) for Windows Hardware Quality Labs (WHQL) certification).

To avoid this message you can contact Microsoft in order to get your driver digitally signed. For more information click here.



Is WinDriver digitally signed by Microsoft?
How can I digitally sign my WinDriver-based driver?

WinDriver is fully compliant with Microsoft’s Windows Certification Program (which replaced the Windows Logo Program (WLP) for Windows Hardware Quality Labs (WHQL) certification). The driver you develop with WinDriver for Windows can be submitted to Microsoft for certification and a digital signature by submitting a Windows Hardware Kit (HCK) package using the Windows Hardware Dashboard.
Many WinDriver customers have already successfully signed their WinDriver-based drivers with Microsoft.
For more information on Microsoft’s Windows Certification Program and the driver certification process, refer to to the relevant section in the WinDriver User's Manuals and to the Microsoft documentation mentioned there.
For further assistance, contact us via our Support Center.



My PCI device is not recognized by the WinDriver PCI applications on Windows. The device is functioning properly and is recognized correctly on Linux, or using v6.0.2 of WinDriver on Windows.

Set the registry key flag in the WinDriver driver INF file (v10.3.1 and higher) to 1 to enable the legacy PCI configuration space read/write method, as explained in Technical Document 2.

Windows CE FAQs



Do you have a debug utility for Windows CE?

Yes — the Debug Monitor utility is also available on Windows CE (including Windows Mobile). For more information, refer to Technical Document 13.



I am writing a CE NDIS driver. It will talk to the CE IP stack.
I need to access the NIC hardware from my driver. Can I use WinDriver?

Yes. In Windows CE, device drivers, including NDIS drivers, are DLLs. So a NDIS network driver can use the WinDriver CE API to talk to the hardware.



I am writing a serial port to NDIS driver for Windows CE. Can I use WinDriver?

Yes. In Windows CE, device drivers, including NDIS drivers, are DLLs. So a NDIS network driver can use the WinDriver CE API to talk to the hardware.

Linux FAQs



When I install my Kernel PlugIn module on Linux I get errors regarding unresolved symbols.

Make sure to install the WinDriver kernel module — windrvr<version>.o/.ko (e.g., windrvr1440.o/.ko) (or windrvr6.o/.ko / windrvr.o in earlier versions of WinDriver) — before installing your Kernel PlugIn module, since the Kernel PlugIn driver depends on the WinDriver driver module for its operation.
For detailed Kernel PlugIn installation instructions, refer to the WinDriver User's Manuals for your WinDriver version and to Technical Document 62.



I am trying to allocate a kernel buffer on Linux. I can allocate a 100KBbuffer, but I cannot allocate 150KB. What should I do?

This is a limitation in Linux kernels — by default you can allocate a maximum of 128KB for kernel buffer allocation. However, it is possible to recompile the kernel to get larger sizes and there is also a path that enables this — as explained in Technical Document 64.

CardBus FAQs



Does WinDriver support a laptop’s CardBus slot using the PCI driver?

Yes. You can use the WinDriver PCI toolkit and API to develop a CardBus driver, as explained in Technical Document 94.

Note that on Plug-and-Play (PnP) Windows operating systems, you need to generate and install an INF file for your device in order to successfully handle it with WinDriver (you can use the DriverWizard to generate the INF file, as explained in the WinDriver documentation). The INF file will register your device to work with WinDriver’s kernel driver — windrvr<version>.sys (e.g., windrvr1440.sys), or windrvr6.sys / windrvr.sys / wdpnp.sys / wdusb.sys in earlier versions of WinDriver.

Parallel/Serial Port FAQs



I am using WinDriver for communicating peripherals with the parallel port. In case of ECP mode, some computers work well, but on one computer this does not work.

This might be a hardware problem, due to BIOS-specific implementations of parallel port modes on various computers. WinDriver cannot control this behavior, since it is programmed into the BIOS. We advise you to follow the brand of computer or BIOS that you have observed works correctly.

Interrupt FAQs



I am currently seeing 25ms between an interrupt and activation of our user-mode interrupt handler. Is this the performance that I should expect with the handler in the application? I am considering moving our interrupt handler to a Kernel PlugIn to enable us to handle interrupts faster.

The user-mode interrupts handler can service up to 10,000 interrupts per second (although we cannot commit to a specific number, since this is dependent upon many factors). A latency of approximately 25ms should generally not happen, but it can from time to time. Using WinDriver’s Kernel PlugIn feature will ensure that this will not happen. However, nothing can protect against some badly written device drivers that sometimes disable interrupts for long periods. Such offending drivers should be identified and upgraded or removed. For more information regarding WinDriver’s interrupt latency, refer to Technical Document 48.



I used the DriverWizard to generate code to handle my level-sensitive interrupt. After returns, I read the interrupt status register but it does not show me that an interrupt had occurred. This is a problem if I have multiple cards sharing an interrupt.

When a PCI interrupt occurs, WinDriver writes/reads the interrupt status register in order to clear (acknowledge) the level sensitive interrupt. This is performed directly in the kernel, according to the information that was set up in the code, beforehand, when enabling the interrupt. To read and save the value of the interrupt register before the interrupt is cleared, so that you can later reference this value from within your interrupt handler routine, you need to set up a relevant read command in the interrupt transfer commands that are set up in the field of the structure, which is passed to (/ in earlier versions)/, and set the flag in the field of the structure ().
This is documented in the “Interrupt Handling” section of the WinDriver PCI User's Manual and in Technical Documents 104 and 75.



I tried to use the DriverWizard to listen to the interrupts of my PCI board, but I got the following message:

PCI uses level sensitive interrupts, which must be acknowledged and cleared in the kernel immediately when they are received. Therefore, WinDriver requires you to define an interrupt status register, which should be read/written in order to clear the interrupt. This is a precautionary feature, because a level sensitive interrupt that is not acknowledged can hang your PC. Please refer to Technical Document 105 for a detailed explanation on how to listen to PCI interrupts with WinDriver’s DriverWizard. Also, refer to Technical Document 75 and to the WinDriver PCI User's Manual for a general explanation regarding the handling of PCI interrupts with WinDriver.

NOTE that as specified in the WinDriver documentation, in order to handle PCI interrupts correctly with WinDriver on Plug-and-Play (PnP) Windows operating systems, you must first install an INF file for the device, which registers it to work with WinDriver’s PnP driver — windrvr<version>.sys (e.g., windrvr1440.sys), or windrvr6.sys / windrvr.sys / wdpnp.sys / wdusb.sys in earlier versions of WinDriver.



Does WinDriver support Message-Signaled Interrupts (MSI)?

Yes. Beginning with version 9.1.0 WinDriver supports Message Signaled-Interrupts (MSI) and Enhanced Message-Signaled Interrupts (MSI-X) on Windows Vista and higher and Linux.
Support for additional operating systems will be added in future versions of WinDriver.

NOTE: Support for MSI/MSI-X on Windows is provided only on Windows Vista and higher, because earlier versions of Windows do not support these types of interrupt.

For more information on WinDriver’s MSI/MSI-X support, refer to the WinDriver PCI User's Manual.

DMA FAQs



I am unable to lock a large memory block (more than 1MB) using .
The Debug Monitor shows that Scatter/Gather lock failed.

To lock a large DMA buffer (more than 1MB) for Scatter/Gather (S/G) DMA (i.e., when the DMA options flag is not set), using function, perform the following steps.

NOTE
When using the high-level function(available beginning with version 7.0.0 of WinDriver), you do not need toperform similar configurations to lock a large DMA buffer; the function already handles this for you. The following steps are required only when using the low-level function.

 

      1. Set the flag in the field of the structure whoseaddress is passed as the parameter of (“the structure”). (Note: This flag is required only when performing Scatter/Gather DMA,as opposed to Contiguous Buffer DMA.)

 

      1. Calculate the number of pages you need to lock, in the following manner, and assign it to the field of the structure:

        where is the number of bytes that you want to lock.

 

      1. NOTE: By default, the structure can holdinformation of up to 256 pages (= , defined in WinDriver/include/windrvr.h). If you wish tolock more than 256 pages, you need to have enough memory to hold theinformation of all the pages. To allocate memory forthe additional pages’ information, you can do the following:

If the memory allocation still fails (using either , or in the manner outlined above), verify that there are sufficient system resources for the attempted memory allocation (both in the kernel and in the user mode address space to which the memory is mapped).
On Windows, you may need to increase the size of the non-paged pool (from which the memory is allocated), as explained in Technical Document 58.
If you still cannot lock the entire buffer, try locking a smaller buffer.

For more information regarding performing DMA with WinDriver, please see the Performing DMA section in the WinDriver Implementations Issues chapter of the WinDriver pci User's Manual, and to the description of the WinDriver DMA APIs in the Function Reference chapter of the manual.



I have locked a memory buffer for DMA on Windows. Now, when I access this memory directly, using the user-mode pointer, it seems to be 5 times slower than accessing a “regular” memory buffer, allocated with. Why?

“Regular” memory (stack, heap, etc.) is cached by the operating system. When using , the data is non-cached, in order to make it DMA-safe. Therefore, the memory access is slower. Note that this is the correct behavior for DMA.

When performing Contiguous Buffer DMA, you can set the flag in the parameter of , or directly in the field of the structure that is passed to (when using the low-level WinDriver API), in order to allocate a cached DMA buffer. When working on Windows x86 and x86_64 platforms, it is recommended to always set this flag.
(Note: The flag is available beginning with version 5.2.1 of WinDriver.)

If you have allocated the memory in the user mode and then passed its address to or to the low-level function in order to lock a Scatter/Gather DMA buffer, then calling will unlock the memory buffer and it will now function like other “regular” memory in terms of access speed.

Источник: [https://torrent-igruha.org/3551-portal.html]
, Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

Download of CAD utilities

FileSizeDateInfoBuy Autodesk - freeViewers--AutoCAD mobile for Windows 10 tablets and phones, V4.14.0 (former AutoCAD 360, free DWG editor, DXF/DWF/PDF viewer, print and markup tool), UWP37MB2.12.2018 Autodesk 360 Infrastructure Modeler for Web (browser plugin; MSIE8/9-32bit,Chrome,Firefox)6.2MB1.10.2012 Autodesk Design Review 2009 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 9.0/96, for Windows Vista/XP/2000 (free) install DWG TrueView and plugins42.9MB25.3.2008 Autodesk Design Review 2010 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 10.0.0.108; for Windows Vista/XP (free) use the INFO button for a bootstrap installer; install also DWG TrueView and plugins36MB25.3.2009 Autodesk Design Review 2011 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 11.0.0.86; for Windows 7/Vista/XP (free) use the INFO button for a bootstrap installer; install also DWG TrueView and plugins38MB25.3.2010 Autodesk Design Review 2012 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 12.0.0.98; for Windows 7/Vista/XP (free) install also DWG TrueView47MB19.7.2011 Autodesk Design Review 2013 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 13.0.0.82; for Windows XP/7/8 (free) install also DWG TrueView, see also the mobile version51MB28.3.2012 Autodesk Design Review 2018 - view, print, measure and redline/markup 2D and 3D DWF and DWFx files, build 14.0.0.148; for Windows 7/8/10 (free) install also DWG TrueView, see also the mobile version421MB5.4.2017 Autodesk Design Review plugin - Batch Print plugin (batch plot for ADR2008)572kB1.4.2007 Autodesk DWF Viewer 7 EN (build 928) - fast viewer for DWF files (incl. DWF 6, 3D DWF, multi-page, print to scale, merged lines, relative links, object properties, assembly tree, BOM, etc., for WinXP/2000 - to autoinstall visit www.cadstudio.cz/dwf) for Win98 use ver.6.5 -- obsolete, use Design Review14.9MB15.6.2006 Autodesk DWG TrueView 2007 - free AutoCAD DWG file viewer, converter and measure tool (any DWG version, incl. DWG-2007; for Windows XP/2000; old version)122MB15.4.2006 Autodesk DWG TrueView 2009 - free AutoCAD DWG file viewer, converter and measure tool (any DWG version, incl. DWG-2009; for Windows Vista/XP; 32-bit version ; former DWG Viewer)193MB26.3.2008 Autodesk DWG TrueView 2009 64-bit - free AutoCAD DWG file viewer, converter and measure tool (any DWG version, incl. DWG2009; for Windows Vista64/XP64)238MB26.3.2008 Autodesk DWG TrueView 2010 - free AutoCAD DWG file viewer, converter and measure tool (any DWG version, incl. DWG-2010; for Windows Vista/XP; 32-bit version ; former DWG Viewer)157MB26.3.2009 Autodesk DWG TrueView 2010 64-bit - free AutoCAD DWG file viewer, converter and measure tool (any DWG version, incl. DWG2010; for Windows Vista64/XP64)183MB26.3.2009 Autodesk DWG TrueView 2011 - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG-2010; for Windows 7/Vista/XP; 32-bit version ; former DWG Viewer)181MB25.3.2010 Autodesk DWG TrueView 2011 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2010; for Windows 7-64/Vista64/XP64)211MB25.3.2010 Autodesk DWG TrueView 2012 - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG-2010; for Windows 7/Vista/XP; 32-bit version ; former DWG Viewer)212MB24.3.2011 Autodesk DWG TrueView 2012 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2010; for Windows 7-64/Vista64/XP64)272MB24.3.2011 Autodesk DWG TrueView 2013 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 7/XP)233MB28.3.2012 Autodesk DWG TrueView 2013 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 7-64/XP64)305MB28.3.2012 Autodesk DWG TrueView 2014 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8/7/XP)252MB26.3.2013 Autodesk DWG TrueView 2014 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8/7/XP)334MB26.3.2013  Autodesk DWG TrueView 2015 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8.1/8/7)252MB21.3.2014 Autodesk DWG TrueView 2015 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8.1/8/7)334MB21.3.2014 Autodesk DWG TrueView 2016 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8.1/8/7)387MB19.3.2015  Autodesk DWG TrueView 2016 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 8.1/8/7)469MB19.3.2015  Autodesk DWG TrueView 2017 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 10/8.1/8/7)571MB21.3.2016  Autodesk DWG TrueView 2017 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2013; for Windows 10/8.1/8/7)661MB21.3.2016  Autodesk DWG TrueView 2018 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1/8/7)576MB21.3.2017  Autodesk DWG TrueView 2018 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1/8/7)790MB21.3.2017  Autodesk DWG TrueView 2019 32-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1/7)554MB21.3.2018  Autodesk DWG TrueView 2019 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1/7)641MB21.3.2018  Autodesk DWG TrueView 2020 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1/7)668MB27.3.2019  Autodesk DWG TrueView 2021 64-bit - free AutoCAD DWG file viewer, version converter and measure tool (any DWG version, incl. DWG2018; for Windows 10/8.1)773MB26.3.2020  Autodesk FBX Review 1.4.1 - free FBX,DXF,3DS,OBJ,DAE viewer for iOS7 (iPad/iPhone)61MB30.11.2016 Autodesk FBX Review 1.4.1 - free FBX,DXF,3DS,OBJ,DAE viewer for MacOS15MB30.11.2016 Autodesk FBX Review 1.4.1 - free FBX,DXF,3DS,OBJ,DAE viewer for Windows 7/8/10 64-bit21MB17.2.2017 Autodesk Inventor Publisher Mobile Viewer V1.8 for Android (3D IPM, free)18MB25.7.2014 Autodesk Inventor Publisher Mobile Viewer V1.8 for Apple iPad, iPhone (3D IPM, free)26MB28.7.2014 Autodesk Revit LIVE viewer V1.8 - for Revit 2014-2018, no more needed for higher versions (Win64)90MB20.4.2017 Autodesk Showcase Viewer 2010 - free viewer for Showcase scenes (.A3S, .APF), Win32733MB1.5.2009 Autodesk Showcase Viewer 2012 - free viewer for Showcase scenes (.A3S, .APF), 32-bit534MB11.8.2011 Autodesk Showcase Viewer 2012 - free viewer for Showcase scenes (.A3S, .APF), 64-bit583MB11.8.2011  Autodesk Showcase Viewer 2013 - free viewer for Showcase scenes (.A3S, .APF), 32-bit83MB22.8.2012 Autodesk Showcase Viewer 2013 - free viewer for Showcase scenes (.A3S, .APF), 64-bit92MB22.8.2012 Autodesk Showcase Viewer 2014 - free viewer for Showcase scenes (.A3S, .APF), 64-bit123MB13.5.2013 Autodesk Simulation CFD Viewer - free viewer for CAE results341MB1.8.2011 Autodesk SXF Viewer - free viewer for SXF (.SFC/.P21) files (Windows)25MB3.12.2013  Autodesk Viewer - cloud-based CAD viewer (Forge Viewer, LMV) - view DWG, DXF, STEP, Revit, SolidWorks, Catia, IGES, IFC, JT, STL, DAE, DGN, OBJ, MAX, SKP, SAT and other formats (free)01.11.2019 Firefox add-on for Autodesk Design Review (view DWF in Firefox/Mozilla browser)296kB19.11.2010 NavisWorks Freedom 2010 - free NWD viewer for CAD/BIM data (32-bit)86MB4.4.2009 NavisWorks Freedom 2011 - free NWD viewer for CAD/BIM data (32-bit)622MB4.4.2010 Navisworks Freedom 2013 - free NWD viewer for CAD/BIM data (32-bit)649MB19.10.2012 Navisworks Freedom 2013 - free NWD viewer for CAD/BIM data (64-bit)725MB19.10.2012 Navisworks Freedom 2014 R1 - free NWD viewer for CAD/BIM data718MB5.12.2013 Navisworks Freedom 2015 R2 - free NWD viewer for CAD/BIM data747MB2.4.2014 Navisworks Freedom 2016 - free NWD viewer for CAD/BIM data860MB4.5.2015 Navisworks Freedom 2017 - free NWD viewer for CAD/BIM data931MB22.3.2016 Navisworks Freedom 2018 - free NWD viewer for CAD/BIM data945MB3.4.2017 Navisworks Freedom 2019 - free NWD viewer for CAD/BIM data686MB19.4.2018 Autodesk Inventor View 2011 CZ, 32-bit (free Inventor Viewer, 2011/2010/2009/2008, for PCs without Inventor)339MB17.5.2010 Autodesk Inventor View 2011 CZ, 64-bit (free Inventor Viewer, 2011/2010/2009/2008, for PCs without Inventor)522MB17.5.2010 Autodesk Inventor View 2012 CZ, 32-bit (free Inventor Viewer, 2012/2011/2010/2009, for PCs without Inventor)344MB6.6.2011 Autodesk Inventor View 2012 CZ, 64-bit (free Inventor Viewer, 2012/2011/2010/2009, for PCs without Inventor)527MB6.6.2011 Autodesk Inventor View 2013 CZ, 32-bit (free Inventor Viewer, 2013/2012/2011/2010/2009, for PCs without Inventor)352MB18.6.2012 Autodesk Inventor View 2013 CZ, 64-bit (free Inventor Viewer, 2013/2012/2011/2010/2009, for PCs without Inventor)527MB18.6.2012  Autodesk Inventor View 2014 CZ, 32-bit (free Inventor Viewer, 2014/2013/2012/2011/2010/2009, for PCs without Inventor, Win7)673MB16.4.2013 Autodesk Inventor View 2014 CZ, 64-bit (free Inventor Viewer, 2014/2013/2012/2011/2010/2009, for PCs without Inventor, Win7/Win8)775MB16.4.2013 Autodesk Inventor View 2015 CZ, 32-bit (free Inventor Viewer, 2015/2014/2013/2012/2011/2010, for PCs without Inventor, Win7/Win8)277MB18.5.2014 Autodesk Inventor View 2015 CZ, 64-bit (free Inventor Viewer, 2015/2014/2013/2012/2011/2010, for PCs without Inventor, Win7/Win8)394MB18.5.2014 Autodesk Inventor View 2016 CZ, 32-bit (free Inventor Viewer, 2016/2015/2014/2013/2012/2011, for PCs without Inventor, Win7/Win8)251.6MB9.4.2015 Autodesk Inventor View 2016 CZ, 64-bit (free Inventor Viewer, 2016/2015/2014/2013/2012/2011, for PCs without Inventor, Win7/Win8)406MB9.4.2015 Autodesk Inventor View 2017 CZ, 32-bit (free Inventor Viewer, 2017/2016/2015/2014/2013/2012, for PCs without Inventor, Win7)311MB18.4.2016 Autodesk Inventor View 2017 CZ, 64-bit (free Inventor Viewer, 2017/2016/2015/2014/2013/2012, for PCs without Inventor, Win7/Win8/Win10)505MB18.4.2016 Autodesk Inventor View 2018 CZ, 64-bit (free Inventor Viewer, 2018/2017/2016/2015/2014/2013, for PCs without Inventor, Win7/Win8.1/Win10)493MB7.4.2017  Autodesk Inventor View 2019 CZ, 64-bit (free Inventor Viewer, 2019/2018/2017/2016/2015/2014, for PCs without Inventor, Win7/Win8.1/Win10)440MB2.4.2018  Autodesk Inventor View 2020 CZ, 64-bit (free Inventor Viewer, 2020/2019/2018/2017/2016/2015, for PCs without Inventor, Win7/Win8.1/Win10)555MB2.4.2019  Autodesk Inventor View 2021 CZ, 64-bit (free Inventor Viewer, 2021/2020/2019/2018/2017/2016, for PCs without Inventor, Win8.1/Win10)555MB12.4.2020  Volo View 3 - DWG/DWF viewer for 2D/3D CAD data (now free, old/obsolete - use Autodesk Design Review)95MB1.1.2008  pluginInventor 5/5.3 plugin for Volo View 218MB30.1.2002  Inventor 6 plugin for Volo View 220.3MB9.11.2002  Inventor 8/7/6/5.3 plugin for Volo View 3 sp2 (WinXP/2000 only)22.6MB19.1.2004 Object Enablers2015Siemens FactoryCAD Object Enabler 2015.0 for AutoCAD 2015, 2014, Architecture 2015, 2014 (FactoryCAD 2015 runtime), 64-bit118MB8.4.2015  2002AutoCAD 2002 Dimension Object Enabler for AutoCAD 2000/2000i, LT 2002/2000i, ADT, MDT, Volo 1 (A2002 family associative dimension runtime)1.9MB8.1.2003  AutoCAD 2004 ObjectDBX Object Enabler for AutoCAD 2000/2000i/2002, LT 2002/2000i, ADT, MDT, VIZ 3/4, Volo 1 (A2004 family truecolor and materials runtime)3.5MB7.3.2003 Autodesk DWG TrueConnect 2000 Object Enabler, for AutoCAD 2000/i/2002 family (Inventor 2008 DWG enabler)328kB24.5.2007 MDT 6 Object Enabler for AutoCAD 2002, VIZ 3/4, Volo 1/2 (Mechanical Desktop runtime)12.1MB9.1.2003  2004MDT 2004 DX Object Enabler for AutoCAD 2004, LT 2004, ADT 2004, Map 2004 (Mechanical Desktop 2004 DX runtime)5.27MB10.3.2004 MDT 2004 Object Enabler for AutoCAD 2004, Volo 3 (Mechanical Desktop runtime, R1-R2004)12.8MB14.5.2003 2005MDT 2005 Object Enabler for AutoCAD 2005, ADT 2005, Map 3D 2005, Civil 3D 2005, VIZ 2005, Volo 3 (Mechanical Desktop 2005 runtime)2.59MB4.11.2004 Raster Design 2005 Object Enabler for AutoCAD 2005, LT 2005, Map 2005, ADT 2005 (Raster Design 2005 runtime)2.63MB21.4.2004  2006Autodesk DWG TrueConnect 2004 Object Enabler, for AutoCAD 2004/2005/2006 family (Inventor 2008 DWG enabler)329kB24.5.2007 MDT 2006 Object Enabler for AutoCAD 2006, ADT 2006, Map 3D 2006, Civil 3D 2006, 3ds max 7 (Mechanical Desktop 2006 runtime)1.1MB7.4.2005 Raster Design 2006 Object Enabler for AutoCAD 2006, Mechanical 2006, ADT 2006, Map 3D 2006 (Raster Design 2006 runtime)2.5MB10.5.2005  2007Autodesk DWG TrueConnect 2007 Object Enabler, for AutoCAD 2007 family (Inventor 2008 DWG enabler)355kB24.5.2007 MDT 2007 Object Enabler for AutoCAD 2007, ADT 2007, VIZ 2007, 3ds max 8 (Mechanical Desktop 2007 runtime)7.7MB6.7.2006 Raster Design 2007 Object Enabler for AutoCAD 2007, Mechanical 2007, ADT 2007, Map 3D 2007, Civil 3D 2007 (Raster Design 2007 runtime)3.5MB2.11.2006 RoCAD 7 Object Enabler for AutoCAD 2007, LT 2007, AutoCAD 2006, LT 2006... (RoCAD7 runtime, TZB)2.1MB5.10.2006  2009MagiCAD Object Enabler 2008.11 SR1 for AutoCAD AutoCAD 2007, AutoCAD 2008, AutoCAD 2009, 32-bit ... (MagiCAD runtime, TZB)
Источник: [https://torrent-igruha.org/3551-portal.html]
Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

WinDriver’s Debug Monitor is an application program that logs detailed debugging information from the WinDriver kernel.
wddebug_gui (found at WinDriver/util, or at /Applications on Mac OS X— in the WinDriver versions that support this OS) is a fully GUI version of this utility, for Windows, Mac OS X, and Linux.
The Debug Monitor has an additional version — wddebug — which supports console-mode usage on Windows, Windows CE, and Linux, (and in earlier WinDriver versions — on Mac OS X, Solaris, and VxWorks as well), and also supports GUI execution on Windows CE. For a description of wddebug refer to Technical Document #13 — for Windows, Windows CE, Mac OS X, Linux, and Solaris — or to Technical Document #14 — for VxWorks.
A detailed description of both versions of the Debug Monitor utility can be found in the WinDriver User’s Manuals. This document describes how to use wddebug_gui in the latest WinDriver version.
References to the Debug Monitor in the following text should be taken to refer to the wddebug_gui version of this utility.

To start the Debug Monitor, do one of the following:

  • Run wddebug_gui from the WinDriver/util directory (or from/Applications on Mac OS X — in WinDriver versions that support this OS).
  • From the DriverWizard, select .
  • On Windows platforms, you can run the program from the Startmenu: (or — in version 5.0.5b or earlier of WinDriver).

When the Debug Monitor starts, it prints a message specifying the program version and OS information.

The debug messages follow after this whenever you perform an operation with WinDriver. When sending the debug messages to the Jungo Connectivity support personnel, do not delete the initial driver and system information from the Debug Monitor window.

The menu, which is available from the Debug Monitor’s menu, allows you to set the debug level and sections for which to receive debug messages. Additional configurations can be made via other Debug Monitor menu options and via the toolbar.

When reporting a problem, run the Debug Monitor, set the debug level toTrace (which implies that the maximum level of debugging information will be logged), leave the debug window open, run your application, reproduce the problem, and then send us the entire output of the debug log.
Note that you can add custom messages to the debug log during execution (beginning with v11.7.0 of WinDriver) via the Debug Monitor’s menu option.
Please observe the lines in the Debug Monitor around where your problem occurs, and insert a remark there for our support personnel.

You can also use the Debug Monitor to debug problems on a target machine on which only the WinDriver driver(s) and your application were installed, and not the entire WinDriver tool-kit: Just copy thewddebug_gui program to this machine, and run it directly on the target.

You can use the function to send your own debug messages from the code to the debug log. This function is available beginning with v5.0.3 of WinDriver, and is described in the function reference section of the WinDriver User’s Manual. Please note that this function can be called from both a user-mode and a kernel-modeapplication, and can even be called from within the Kernel PlugIn function, which is executed at HIGH IRQL.

For an explanation on how to send debug messages from the Debug Monitor to a kernel debugger, refer to Technical Document #44.

Back To Top

Источник: [https://torrent-igruha.org/3551-portal.html]
.

What’s New in the Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download?

Screen Shot

System Requirements for Scatter Slots For PC Windows 10/8.1/8/7/xp & Vista And Mac Download

Add a Comment

Your email address will not be published. Required fields are marked *