Tagged Questions

Device driver or software driver is a computer program allowing higher-level computer programs to interact with a hardware device.

learn more… | top users | synonyms

15
votes
6answers
4k views

What (software) usb sniffers are available for windows?

Are there any software drivers for windows 7 (64-bit) that can report the data transferred between some application software and a usb device? I have tried snoopy ...
13
votes
5answers
551 views

Automating Win32 Driver Testing

Does anyone know ways of partially or fully automating driver test installation? I am new to driver development and am used to more of a test-driven approach in higher level languages, so moving to ...
13
votes
3answers
2k views

Raw PDO to send IOCTL to upper filter driver (kbfiltr/moufiltr) to enable/disable device

I am quite new to driver development and trying to write a simple filter driver that will enable or disable a keyboard or mouse device. If I can make it work, I want to use it to disable the touchpad ...
11
votes
1answer
243 views

Why is it “Bad” to Build Drivers with Visual Studio?

Microsoft Visual Studio's linker has a /DRIVER flag specifically for building drivers: Use the /DRIVER linker option to build a Windows NT kernel mode driver. However, Microsoft says: You ...
11
votes
4answers
775 views

Can I write Windows drivers with Delphi 2010?

I've always heard that Delphi can do almost anything C++ can do...except write Windows drivers. Is this correct, and if so, why is that? I recently read a blog post online that may indicate a ...
11
votes
1answer
6k views

64 bit ODBC Exception

I am getting the following ODBC exception when I moved my development platform from Windows XP X86 to Windows 7 X64: ERROR [IM014] [Microsoft][ODBC Driver Manager] The specified DSN contains an ...
11
votes
6answers
5k views

Writing drivers in C#

I have written earlier in C/C++ but currently, I need it to convert into C#. Can anyone tell me the code/way How to write drivers in C#? Actually currently I have some problems with my old ...
10
votes
7answers
894 views

How can I compile Programmer Dvorak?

I'm trying to compile the open source project Programmer Dvorak. The problem is that it's a bit old and doesn't build with the current versions of the build tools. You can see the full source code ...
10
votes
3answers
563 views

Are there recommended tutorials for writing drivers for Gnu/Linux?

I'm getting to the point where, after a year or so, I'm more or less comfortable using Linux (Ubuntu, first 8.04, now 9.04) as my main OS (it helped that the competition was, primarily, Vista). I ...
10
votes
7answers
8k views

How to create a virtual printer in Windows?

I want to create a virtual printer driver for Windows. Where should I start? The WDK has some printing drivers examples, but nothing I can use. MSDN doesn't seem to be very helpful. There are a lot ...
10
votes
3answers
2k views

How do I deploy a .inf based driver?

I would like to deploy a .inf based USB driver with my installer. I guess the .inf needs to be placed in %SystemRoot%\inf, but there is also a .cat (WHQL certification I guess?), and .sys files. ...
9
votes
4answers
367 views

Any good tutorials for the offical MongoDB C# Driver?

I'm currently looking to use MongoDB in a C# project and I'm interested in using the official C# Driver. The official 'tutorial' is more a reference than a tutorial (see ...
9
votes
4answers
2k views

How to create own XP printer driver

How would I create my own XP printer driver which will do the following: print to file (probably XPS format) put this file into a password protected ZIP file email the zip file to a configured email ...
9
votes
3answers
2k views

How to use a JDBC driver from an arbitrary location

I need to test a JDBC connection to a database. The java code to do that should be as simple as: DriverManager.getConnection("jdbc connection URL", "username", "password"); The driver manager will ...
8
votes
1answer
341 views

I want to create a minifilter driver to transparently redirect disk i/o, but I'm having trouble getting started

A project I'm working on at the moment requires the implementation of a copy-on-w/m mechanism which will be used to redirect disk i/o in a similar manner to Deep Freeze or Sandboxie, on Windows XP. If ...
8
votes
3answers
1k views

Replace default GPS signal provider on Android devices

I would like to replace the default GPS location provider on android phones with my own coordinate source. Is there any layer/API/library/provider that would allow to be replaced with my signal ...
8
votes
3answers
3k views

How to read GPU (graphic card) temperature?

I am interested in a way how to read GPU temperature (graphics processing unit, main chip of graphic card), by using some video card driver API? Everyone knows that there two different chip ...
8
votes
3answers
1k views

Using boost in WDK build environment for applications?

I am using the Windows Driver Kit (WinDDK 6001.18001) to build my userspace application rather than Visual Studio 2005. I am taking this approach because we also have to build driver components, so ...
8
votes
1answer
3k views

OLEDB v/s ODBC

What is the difference between OLEDB and ODBC? When do I use which and how do I know what I am looking at is a OLEDB driver v/s an ODBC driver?
8
votes
12answers
5k views

How do I program a driver for a USB device for windows platform?

I am looking for a device that reads wiring voltages via a USB interface and returns the data. How would I go about programming something to interpret this data and what language would I use? edit: ...
7
votes
1answer
580 views

Port 32-Bit Windows driver to 64-Bit Windows

Since our applications run in fullscreen mode, we have developed a keyboard hooking driver to disable user input for keys like ALT+F4, CTRL+ALT+DEL and so forth. The driver is developed in C using ...
7
votes
1answer
133 views

What's the appropriate reference for writing a MySql driver?

I have to use erlang-mysql-driver in my application, but it has been distressingly unreliable. Since it isn't being maintained, I don't see any option but to fix it myself. The problem is, I've never ...
7
votes
1answer
843 views

Sending IOCTL from IRQL=DISPATCH_LEVEL (KbFilter/KMDF)

I am using the KbFilter example in the WDK, trying to send an IOCTL in a function that is called by KbFilter_ServiceCallback and therefore is executed at DISPATCH_LEVEL. The function just has to send ...
7
votes
6answers
2k views

how can i build a driver using visual studio?

does anyone have an article how to do this ? thanks
7
votes
4answers
3k views

PDO MySQL Driver on Mac

I have a mac with a custom PHP 5 install that built from about a year ago. I remember it took all Sunday and I had to compile about 20 times to get it right. The MySQL I have is from entropy and was ...
6
votes
1answer
47 views

Parameterized query fails when inserting certain Unicode characters

I have a problem when trying to insert certain characters through query with parameters. When I run the following query (no parameters involved), everything works fine. string insertQuery = "insert ...
6
votes
2answers
213 views

How can I make a custom USB device show up in Windows as a COM Port?

I have developed a USB device that communicates with linux over a simple but proprietary interface and some custom Linux drivers. My goal is to port this to Windows without writing windows drivers. ...
6
votes
3answers
238 views

Making the best of a bad “checksum” algorithm

I'm working on an existing driver that controls an 8-bit MCU over a serial port. There are many different flavors of firmware for the MCU but they all share a common method of trying to ensure link ...
6
votes
5answers
192 views

How to deal with memory leak from someone else's driver

I am running a c program on a CentOS 5.5 computer. The program runs a loop that performs tests over and over until told to stop by an external source. By necessity I am using an old driver for a PCI ...
6
votes
5answers
756 views

How to share register and bit field definitions between a device driver and the FPGA it controls

Are there any good, existing software tools available to assist in generating C header files with appropriate #defines for register offsets as well as bit definitions from VHDL? If any such tools do ...
6
votes
1answer
1k views

How do I use WiX to deploy an INF-based USB driver

This question could be considered a duplicate of: http://stackoverflow.com/questions/677686/how-do-i-deploy-a-inf-based-driver Except that I want to do that entirely in the installer, not with a ...
6
votes
8answers
989 views

how to code drivers?

I want to code drivers in C in linux os, though I think its very tough. Can I get some hints as to how to start or books to follow? Drivers can be from my USB port to graphics card!! I know as to ...
6
votes
2answers
6k views

Writing a Windows Printer Driver

I want to write a application in C++ or C# that will behave as a printer driver when installed. It will be available in the drop down list in Print dialog but instead of printing it will call into my ...
6
votes
5answers
1k views

learning to program Windows drivers

what would you recommend for a resource on learning to program drivers. i am working my way through Programming the Microsoft Windows Driver Model, but i was wondering if any of the examples are vista ...
5
votes
1answer
91 views

What APIs exist to configure the speaker setup using C# in Windows?

I've looked around many different places, but can't seem to find a straighforward way of doing this. I have a number of sound cards in Windows 7 and output sound to my AVR amp using HDMI. The ...
5
votes
0answers
168 views

PCIe driver for Windows CE and Windows Desktop

I need a little advice for development of a custom PCIe driver. The driver must support both Windows CE 6.0 and Windows Desktop (xp, 7, and 8 when ready). We have a lot of experience developing ...
5
votes
1answer
178 views

Replacement for the ioctl() function

I am developing a device driver I/O model for small microcontroller applications, using POSIX as a guideline for interface design. I implemented ioctl() as a means of controlling driver/hardware ...
5
votes
1answer
146 views

Windows bug check callback not called on 64 bit systems

We have ported our driver successfully to 64 bit systems a while ago. But one thing is missing, which is not very important but it was a very handy debugging feature. The callbacks registered with ...
5
votes
3answers
245 views

Can one use OpenGL in the Kernel?

Can I use OpenGL in the Linux Kernel? That is, I'd like to improve the performance of some code, so using the GPU would be benefit for another driver. It's certain the GPU would be fixed on the ...
5
votes
2answers
3k views

Windows7 boot option to allow unsigned drivers ignored

I'm learning Windows kernel mode driver development. I've written a small test driver that I can successfully register, unregister, load and unload under Windows 7 32bit Ultima edition running under ...
5
votes
1answer
416 views

Mongo C# ignore property

I'm using v0.9 of the official MongoDB driver and i'm trying to read in a collection. I have a field in the database that I don't want to read into my object but I get the following error. ...
5
votes
7answers
611 views

Why is C used for driver development rather than C#? [closed]

Possible Duplicate: C# driver development? Why do we use C for device driver development rather than C#?
5
votes
2answers
184 views

CGI Application Authentication using multiple drivers

Hi I have been trying to authenticate my CGI application through 2 drivers, one that uses username/password stored in the database and other using ldap active directory. following is the code ...
5
votes
1answer
390 views

“Are you sure you want to print X pages?” dialog before actually printing… (for any app)

In Internet Cafes where people are allowed to print, sometimes they print more pages than they intended to. I'm looking for a way to display an "Are you sure you want to print X pages?" dialog after ...
5
votes
1answer
373 views

Non-HID Mouse driver on NT

I'm looking to write a custom touchpad driver for my laptop, as its support under Windows is abysmal. I have the protocol figured out and I'm ready to go ahead and implement it, but I'm a bit ...
5
votes
4answers
7k views

What is a driver class? (Java)

I was reading through a Java textbook, and it mentions something called a "driver class". What is it, and how is it different from a normal class?
4
votes
1answer
59 views

Installing 32 & 64 bit drivers with Wix?

I have a Wix project from which I would like to install 32-bit drivers when built with the x86 release configuration and 64-bit drivers when built with x64. The way I am doing this just now is with ...
4
votes
2answers
122 views

Linux Kernel: udelay() returns too early?

I have a driver which requires microsecond delays. To create this delay, my driver is using the kernel's udelay function. Specifically, there is one call to udelay(90): iowrite32(data, addr + ...
4
votes
3answers
386 views

Some problem about Android Driver Development

I am very new to this field. Actually I just begin to investigate the possibilities. The simple version of my question is, what will it take to develop a driver (say USB<->Serial), deploy it to an ...
4
votes
1answer
207 views

Windows Firewall Programming

I googled many times till I created this question, so please excuse me if there are some tutorials out there. I didn't found them. How can I code a firewall application in windows? I thought about a ...

1 2 3 4 5 17