The kmdf tag has no wiki summary.
1
vote
1answer
61 views
What is the difference between a WDM driver, a KMDF driver and a UMDF driver?
When creating a Windows Driver project in Visual Studio 2012, you have many different options to choose from.
There's a page on MSDN that helps you with choosing the correct driver model for your ...
-6
votes
1answer
35 views
how long does it take to write a PCIE to Serial windows driver with zero knowledge? [closed]
I need to write a serial driver for PCIE with interrupts, contigious buffer DMA and simple read/write requests from PC to PCIE. I have no knowledge on drivers and small knowledge on PC architecture. ...
0
votes
0answers
49 views
MSI-X interrupts in WDF
I'm having a lot of trouble getting MSI-X interrupts implemented in a Windows bus driver we're writing in WDF / KMDF.
I've read the MSDN documentation, and there's not really a lot of helpful info ...
1
vote
0answers
56 views
could not open service xx,when i install a wdf driver to win7 x64
I think there's a problem in my inf file. But my driver and inf work fine in windows xp and win7 x86.
I also searched this problem, see somebody said service's name not the same. But in my inf, it's ...
0
votes
2answers
44 views
Problems deploying a kmdf driver
I've been trying to compile and deploy the sample keyboard filter supplied by Microsoft using visual studio 2012 tools. I have the target computer setup via a serial cable (virtualbox with a serial ...
-2
votes
1answer
31 views
Front Panel driver on windows 7 used the third part driver
We alread have a front panel based on uart commuication, I want to use it to commuicate to windows pc. The solution is use a chip covert UART to USB, chip driver on windows is virutal COM, the driver ...
2
votes
1answer
59 views
IoGetDevicePropertyData() returns STATUS_OBJECT_NAME_NOT_FOUND
I'm updating a functioning KMDF driver for a PCI device, using WinDDK 7600.16385.1 and OSR's ddkbuild.cmd, targeting WLH, testing on Win7 x86 and x64.
I'm attempting to retrieve the ...
0
votes
0answers
49 views
KMDF filter driver for MTP devices
How can I write a KMDF filter driver for the MTP devices to prevent these devices from opening?
1
vote
1answer
44 views
When does Windows cancel an in-flight WDF request?
I am writing a Windows device driver using WDF (KMDF) for a USB3 device that transfers data in large chunks at a time. I've written a user-level application that tests this functionality, and for the ...
0
votes
1answer
137 views
WDF Coinstaller issue
I'm having problem installing my KMDF 1.9 driver on a 32-bit Vista machine running KMDF 1.5. I was hoping the coinstaller should update the Vista machine to KMDF 1.9. But it does not.
What have I ...
0
votes
0answers
39 views
Windows: how to obtain/access filesystem of flash usb ( eToken ) without libusb etc?
I want to know, how could I access and get binary data from usb-flash key (eToken), which I insert into my PC, where Windows OS ( XP -> 8 ) is installed.
Also I don't want to use libraries as libusb ...
3
votes
0answers
43 views
Is there a way to intercept every single IRP in KMDF
I am writing a KMDF driver that needs to intercept every IRP before it passes to the ioQueue.
I have a callback function registered PreprocessIrpCallback and want to hook it into the framework like ...
0
votes
1answer
114 views
Generate kernel-level mouse input in Windows
I would like to have an application sending data to control the mouse system-wide, like a real mouse.
Based on the information I researched this design needs a driver, which reads data written by the ...
0
votes
1answer
123 views
How to access the KMDF driver from Client application
I have written a sample KMDF driver. I dont know if I did every thing right but have seen KMDF driver printing Debug message in DebugView utility - when I added this driver as new hardware. It also ...
0
votes
0answers
1k views
erreur : C1083: Cannot open include file: 'wdm.h': No such file or directory
I am trying to build this code with qtcreator, my point is to create a new device using RtlInitUnicodeString and IoCreateDevice
#define _WIN32_WINNT 0x0501
#include <string>
#include ...
0
votes
1answer
50 views
WdfRequestIsCanceled Vs WdfRequestMarkCancelable
Can anyone list the pros and cons of using below two approaches for IO cancellation in wdf?
1) mark request cancellable with WdfRequestMarkCancelable (). Provide a cancel routine and synchronize the ...
0
votes
2answers
190 views
process exit/delete notification in a KMDF driver
I need to get notification in a KMDF driver when processes go down. I do not want to use PsSetCreateProcessNotifyRoutine because that gives me notification for every process that is created or ...
1
vote
0answers
50 views
Signing a kernel mode driver
I have a kmfd driver and i am buying a certificate from http://www.digicert.com/code-signing/ , will this certificate work on windows 7 ? or do i need to buy it from verisign only , they charge a ...
0
votes
2answers
199 views
Waiting for vertical blank in kernel mode?
I'm writing a driver that needs synchronization with vertical blank interrupt to send some data down the USB pipe.
In user-mode there are Direct X functions available for this like ...
3
votes
1answer
1k views
workaround to skip driver signing in 64bit windows
I am an individual, not a company and i am working on a virtual kernel mode device driver. I am aware that I can test sign a driver and run in test mode. However I want to distribute my driver free of ...
1
vote
0answers
99 views
Handling shutdown in KMDF filter
I'm working on kmdf volume filter driver and wanted to handle shutdown. The article WDM IRPs and KMDF Event Callback and comments in the WDF book seems to suggest that the WDF supports IRP_MJ_SHUTDOWN ...
0
votes
1answer
243 views
Creating WDF read request out of nothing?
Background:
I'm writing a virtual USB to RS232 driver. But since my hardware is a USB-chip (PDIUSBD12) and not a pure UART chip the driver needs some special tweaks. A PC using something like the ...
1
vote
1answer
452 views
Which APIs should I use to expose WebCam functionnalities?
I am trying to design a Windows KMDF driver for an old USB Webcam.
I think I have enough informations on the driver development / USB protocol side, but I am wondering how I should expose the webcam ...
2
votes
1answer
145 views
Guides for adding 64-bit support to a KMDF driver
Are there any guides or documentation for adding 64-bit support to a KMDF driver? I have a good set of links for WDM drivers, but it would be nice to see a KMDF-specific guide showing what KMDF ...
2
votes
1answer
535 views
Smartcard Driver (KMDF with SCardLib) Issues
I'm developing Smartcard Driver using KMDF and SCardlib, I used the WDK Smarcard Sample as reference, I think I implemented all of the callbacks correctly except for CardPower and CardTracking. (My ...
11
votes
5answers
778 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 ...
6
votes
1answer
2k 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 ...
13
votes
5answers
1k views
Differences between struct in C and C++
I am trying to convert a C++ struct to C but keep getting "undeclared identifier"? Does C++ have a different syntax for referring to structs?
struct KEY_STATE
{
bool kSHIFT; //if the shift key ...
15
votes
3answers
3k 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 ...
2
votes
3answers
1k views
Accessing a Toshiba Laptop Accelerometer Device Driver
I have a new Toshiba Satellite Pro S300 laptop (running Windows XP) which sports a 3D accelerometer for HDD protection. I'd like to tap into the data sent by this sensor.
Older Toshiba laptop/Tablets ...