Tagged Questions
A device driver is a specialized software component (usually considered "system software") which allows a system to interact with a particular type or class of hardware device, such as a keyboard, serial port, disk drive, video display, memory controller, or other peripheral.
20
votes
4answers
2k views
Extending Functionality of Magic Mouse: Do I Need a kext?
I recently purchased a Magic Mouse. It is fantastic and full of potential. Unfortunately, it is seriously hindered by the software support. I want to fix that. I have done quite a lot of research and ...
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
2answers
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
2answers
914 views
Reverse Engineering an Apple Kext - Reconstructing the Class
Greetings!
I am currently attempting to extend the functionality of the Magic Mouse. To do this, I am hoping to write a kext that intercepts events from the multitouch driver, ...
10
votes
3answers
561 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 ...
8
votes
11answers
3k views
Is it possible to code a device driver in Java?
Introduction
I heard something about writing device drivers in Java (heard as in "with my ears", not from the internet) and was wondering... I always thought device drivers operated on an operating ...
7
votes
4answers
259 views
Curiosity beyond abstractions: how is bytecode executed? how do device drivers work?
Everything I've seen on *nix has been a set of abstractions off hardware, but I'm curious as to how the hardware works.
I've programmed in assembly, but that's still only a set of abstractions.
How ...
7
votes
3answers
460 views
How can I learn about proprietary hardware communication?
If I have two pieces of hardware (say a PC with a custom ISA or PCI card connected to a piece of hardware using some crazy cable) and want to see as much as possible about the conversations between ...
6
votes
5answers
754 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
2answers
2k views
Writing a windows driver for an emulated input device
My application needs to behave as a virtual joystick (imagine dragging a square with the mouse and translating that to the output of an analog joystick) and send some keystrokes over the network to ...
6
votes
2answers
2k views
Emulating joystick programmitically
I want to emulate a joystick using keypresses and/or mouse input. So other programs/games will think that user is using a joystick while he is using a mouse.
So the program will install kindof a ...
6
votes
6answers
2k views
USB for embedded devices - designing a device driver/protocol stack
I have been tasked to write a device driver for an embedded device which will communicate with the micro controller via the SPI interface. Eventually, the USB interface will be used to download ...
5
votes
1answer
87 views
How come two devices share the same major-minor device number?
I am reading "Linux device drivers, 3rd edition", and found something i can't understand.
in Chapter 3.2, the author said:
Traditionally, the major number identifies the driver associated with ...
5
votes
7answers
881 views
Linux Device Driver: Symbol “memcpy” not found
I'm trying to write a Linux device driver. I've got it to work really well, until I tried to use "memcpy". I don't even get a compiler error, when I "make" it just warns me:
WARNING: "memcpy" ...
4
votes
1answer
44 views
Use Mouse as Position Sensor
I have project in which we are using a laser mouse as a position sensor. For the proof of concept work I wanted to use the electrical components as is from a commercial 'off the shelf' mouse to save ...
4
votes
1answer
111 views
Linux spin_lock vs. NT KeAcquireSpinLock
From what I can gather:
NT's KeAcquireSpinLock is equivalent to spin_lock_bh: the one raises IRQL to DISPATCH_LEVEL, the other masks the bottom half interrupts -- functionally the same. While the NT ...
4
votes
4answers
2k views
DDK/WDM developing problem … driver won't load on x64 windows platform
I am a beginner at DDK/WDM driver developing field.
I have a task which involves porting a virtual device driver from x86 to x64 (intel).
I got the source code, I modified it a bit and compiled it ...
4
votes
2answers
2k views
How to subtract one generic list from another in C#2.0
First of all, it very well could be that I'm approaching my problem the wrong way, in which case I'd gladly accept alternatives.
What I'm trying to achieve is to detect which drive was created after ...
4
votes
3answers
3k views
Virtual Webcam Driver
I want to develop a virtual webcam driver which from User mode I'll pass image to it and it will display as webcam output.
I don't want to use DirectX filter and CSourceStream etc. Because they ...
4
votes
2answers
875 views
Good real-time programming books for beginner's questions
I find myself in a situation where I need to work on a embedded, real-time system at work without much prior knowledge. I've done a fair amount of research online, but found nothing satisfactory, so ...
4
votes
2answers
421 views
how to associate the the device in /dev/ with the actual driver
I am trying to understand how device driver works in linux.
I have a device node as follows (Major number 89, device name i2c-0)
crw-r--r-- 1 0 0 89, 0 Sep 29 01:36 /dev/i2c-0
...
4
votes
4answers
1k views
How might I learn to write char device drivers for Linux?
How to write char device drivers in Linux?
3
votes
1answer
36 views
System programming in Ubuntu
[Question moved in from askubuntu.com]
I'd like to get into Ubuntu systems programming; to be specific - developing and debugging device drivers. However, I'm not sure about how to get started, even ...
3
votes
1answer
140 views
How to detect when USB device is being connected/disconnected?
I don't feel comfortable harnessing USB device with Delphi and have a next to nothing knowledge of the details of writing device driver (though I've come accross some when learning assembly with ...
3
votes
2answers
51 views
Seeking FOSS serial port driver which can handle 9 data bits
I need a serial port driver for an embedded device (LPC 1769) running FreeRtos.
It needs to handle:
1 start bit
8 data bits
1 "mode" bit
1 stop bit
11 bits total.
I don't know much (if ...
3
votes
1answer
337 views
Linux USB device driver not getting probed
I'm working on a device driver for Linux. It's a USB pen tablet. The problem is that the driver's probe callback never gets called. dmesg just shows:
generic-usb: probe of 0003:099A:2620.000F failed ...
3
votes
0answers
193 views
writing android drivers?
I need to develop few drivers for android that should work on Android4SAM eval board.
I started writing the drivers as a normal char drivers in linux kernel, and they work as planned. whats the next ...
3
votes
4answers
124 views
32bit vs 64bit drivers
are there any specifics when developing a device driver (kernel-mode) on Windows 7 32 bit or Windows 7 64 bit? Can I develop on some platform and prepare builds to run on the other one?
Thank you.
3
votes
2answers
79 views
Getting the Windows Drivers Directory
Is there an official / proper method of getting Windows’ drivers directory or do you just concatenate "\\Drivers" to GetSystemDirectory()?
To be clear, I mean the Drivers directory that is in the ...
3
votes
0answers
146 views
The Uninstall section of my .INF
I'm working on extending an existing USB device driver, and have been struggling learn how the .INF file works. I believe that I have it right now, the driver installs and works. It also shows up in ...
3
votes
2answers
143 views
How to create a display for OS X?
I need to write what I think is a display driver for OS X. It's like those "Use your iPad as a second monitor!" apps, but I need to write the OS X software that will register another display with OS ...
3
votes
1answer
297 views
C# - Popup my application whenever print happened to test driver
I am working on the assignment to write a Virtual Printer with C# and NTDDK.
I have created a test printer driver and I am able to print .ps documents(redirected to C:\test\test.ps always) using it. ...
3
votes
3answers
849 views
I/O completion port's advantages and disadvantages
Why do many people say I/O completion port is fast and nice model?
What is the I/O completion port's advantages and disadvantages?
I want to know some points which make faster IOCP than other ...
3
votes
1answer
351 views
using numpy.memmap to map a device file
Is there a reason that opening a device file (rather than a regular file) using numpy's memmap shouldn't work?
self.surface = np.memmap('/dev/fb1', dtype=np.uint16, mode='r+', shape=(320,240))
I'm ...
3
votes
4answers
966 views
dpinst / DifX won't install signed driver silently
When installing an Authenticode-signed driver on Windows 7 through DpInst, unless it's a WHQL-signed driver, you cannot install it silently. If you run DpInst in the non-silent mode, it'll prompt you ...
3
votes
1answer
69 views
Accessing a Panatone Huey via Python
I have a Panatone Huey, a monitor calibration probe (device you attach to the monitor, and it gives you colour readings) - I want to get readings from the device in Python.
Having never written such ...
3
votes
2answers
331 views
Programming USB in embedded system for sending some data to host for printing
I have been tasked with writing a USB driver for our embedded software to send raw data to Host. This will be used to send some logging data to host. We are using iMX31 litekit for development.
From ...
3
votes
1answer
216 views
Can a 32 bit User-mode driver run on top of a 64 bit OS?
I have been checking out some info about 64-bit driver development; I found that drivers have to be re-written in order to be compatible with a 64 bit OS. However, I was wondering if this also holds ...
3
votes
4answers
648 views
Writing Device Drivers for Microcontrollers, where to define IO Port pins?
I always seem to encounter this dilemma when writing low level code for MCU's.
I never know where to declare pin definitions so as to make the code as reusable as possible.
In this case Im writing ...
3
votes
3answers
2k views
Cheap windows driver signing for 64 bit Windows 7
I need to install the libusb-win32 driver on Windows 7 64 bit machines. This driver is open source so it is not digitally signed so I want to do this my self but I wonder if this can be done WITHOUT ...
3
votes
5answers
421 views
Which edition of windows internals should I read?
I want to get into windows driver development. I heard from the community that before diving into driver development one must be familiar with windows internals that means one must read "Windows ...
3
votes
2answers
1k views
cache - flush and invaildate operation
I have some questions on Cache synchronization operations.
Invalidate - before cpu tries to read a portion of memory updated by a device, the corresponding memory needs to be invalidated.
Flush - ...
3
votes
6answers
214 views
How can I inject raw packets onto my network
In testing certain network device driver receive features, I need to send special packets on the wire. I know I need to open a raw socket and push the bytes out. Is there some well-known example (C, ...
3
votes
2answers
324 views
learning linux drivers
I am learning now days programming drivers.
I am doing my learning from this book Linux Device Drivers
But I am little bit lack of practice. Can you recommend me some simple projects that I can get ...
3
votes
3answers
122 views
Loading Preferences in to a Mac Kernel Extension
Greetings!
I am working on a kernel extension driver for OSX. It is a simple keyboard filter. I have preferences that are set through a preference pane regarding how this filter will act. I need to ...
3
votes
4answers
6k views
Epson OPOS ADK for .NET drivers for windows 7
Has anyone used Epson OPOS ADK for .NET for windows 7. i tried to install windows vista drivers on windows 7, since there are none available for windows 7, but it did not work. Please share any ...
3
votes
1answer
310 views
How to record(reverse-engineer) PCI transactions on Linux
I want to record all read/write PCI transactions of a device driver. Is there a way to do it by a linux command or on software?
3
votes
1answer
381 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 ...
3
votes
2answers
4k views
Iphone device token - NSData or NSString
I am receiving iPhone device token in the form of NSData object.
When I tested my notifications script function, I have only copied that object from log and the notifications went fine. However when ...
3
votes
2answers
586 views
Best way to watch process (and sub-processes) for file system read() I/O?
I would like to develop a command line program that worked like so:
myprogram /c [some_executable_here]
Which launched the command specified by the user and "watched" the process (and any ...