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.
1
vote
0answers
46 views
Write a driver for touch pad
I have a dell vostro 1510 laptop and it only has 32 bit drivers. I installed 64 bit windows 7 and now scroll function is not working. I want to write a device driver for it.
Where should I begin?
...
0
votes
0answers
22 views
Difference between 2 process and 2 threads in contex of usage of device file ( node file )
I had made a driver(simpler one).
Now i am opening device file through 2 process (By fork()) and through 2 threads.
What is the differences of them ??
2
votes
1answer
27 views
Standard c++ containers in windows driver
I know that I can't use the STL library directly when developing windows driver. But I really need to use the standard c++ containers ( vector, map,etc ) . Any one knows some kernel based ...
0
votes
1answer
22 views
Buffer in driver for PCI device
I'm writing driver for some pci device. My driver need buffer for handling data user wrote.
Then driver is providing device with the data.
There would be no problem, but my driver must handle many ...
0
votes
2answers
58 views
Dealing with buf between user space and kernel
I'm making a simple device driver capable of receiving and sending characters using a UART.
My read and write functions are as follows:
unsigned char UART_read(void){
unsigned int buf;
...
0
votes
1answer
25 views
Disk filter driver on Windows Phone 8
We are using Disk filter driver developed for Windows 8 OS.
Please let me know whether it is possible to use same driver on Windows 8 Phone OS.
Please let me know the forum, if this forum is not the ...
0
votes
0answers
26 views
WMI and devcon race?
Our policies require us to enable networking devices for a given remote machine only as needed. These are cellular and POTS modems of various sorts (though right now limited to Ericsson H5321gw and a ...
0
votes
1answer
29 views
Left and Right audio channels are exchanging
I am trying to write an application for capturing stereo audio. My audio input has two channels(Stereo). I am writing this audio data into a wav file. Some times these audio channels are exchanging ...
0
votes
1answer
31 views
Android Device Driver make node
I have a course project that involves setting up a device driver on Android. I have previously worked with device drivers in the Linux kernel and we used two commands to initialize the device and make ...
2
votes
0answers
57 views
Kernel panics : trying to write / read on tiny tty driver
I'm a beginner to the Linux programming and trying my hands on some device driver examples while practising.
The below code (a trimmed down version of tiny_tty.c) loads perfectly using insmod and I'm ...
0
votes
1answer
27 views
How Devfs and dev file system differ
I read about devfs(known as device file system ) to facilitate device driver programming as mentioned in linux device drivers text . How different is devfs from /dev directory in linux.Are they ...
0
votes
0answers
62 views
device is not apperaing in adb list even after installing the driver (Nexus s)
I am trying to do some android application using eclipse ,So i thought of using my Nexus s device .I downloaded the google driver from android SDK Manager and installed.
But still my device is not ...
2
votes
3answers
72 views
Deleting dynamic memory pointed by static pointer
I have the following structure (simplified):
class myType
{
static char* data;
//more private data here
public:
//public interface here
};
data is a resource shared between all the ...
0
votes
0answers
16 views
Error during creation of Proc entry
I want to create a Proc entry in an USB driver code , but I'm getting the error as implicit function declaration of function 'create_proc_read_entry' and 'remove_proc_entry' .
I have followed ...
1
vote
1answer
64 views
Linux USB driver: Interrupt URBs
I suppose I actually have two separate questions, but I think that they are related enough to include them both. The context is a Linux USB device driver (not userspace).
After transmitting a ...
2
votes
1answer
38 views
IoCreateSymbolicLink when it will return STATUS_OBJECT_NAME_COLLISION
when I Call IoCreateSymbolicLink failing with status STATUS_OBJECT_NAME_COLLISION.I have code in my driver where i tried to create symboliclink name between NT and DOS.
When usually this error will ...
1
vote
2answers
77 views
About to print KERNEL messages on terminal
According to manual page it told that if priority of message's log level is higher than default set log level then it will be printed on terminal. But when I had used sentence like
printk(KERN_ALERT ...
0
votes
0answers
34 views
Explanation of fuzz and flat in input_absinfo struct in input.h
I'm trying to tweak the sensitivity of a joystick which does not work correctly with SDL, using the EVIOCSABS call from input.h. I think that the fuzz and flat members of the input_absinfo struct ...
0
votes
0answers
68 views
Performance test tool for GPU drivers Open source Mali/UMP
I am using ARMv7 TV Board, having board specific GPU driver mali400x4 (OpenGL ES 1.1, 2.0 and OpenVG 1.1). I would like to know any test project suite to test performance, stress, Lmbench for this ...
0
votes
0answers
139 views
windows kernel debugging over a network issues
I'm trying to get windows kernel debugging to work over a network.
My NIC is on the list of "Network Adapters Supported for Debugging."
...
0
votes
0answers
65 views
How to capture WM_DEVICECHANGE with type DBT_CUSTOMEVENT from unknown sender?
Ie tablet sends this message when I press Tablet MS button (using spyxx). And I want to capture, and handle this event my self. Tried locating device which is sending this message. But all I see in ...
0
votes
0answers
29 views
lregistry replacement in Linux kernel driver
Background:
I'm porting a driver from Windows to Linux.
The driver uses the Windows Registry to persist data across invocations.
Basically, there are few key/values in the registry that the user / ...
0
votes
1answer
39 views
SMSC911x driver locks up on Windows CE device
I am struggling with a Windows CE device that locks up occasionally when the network cable is unplugged. It is running Windows CE 5.0 and the NIC driver is SMSC911x. It is running version 1.01, and I ...
0
votes
0answers
33 views
Setup API functions DiRollbackDriver and DiUninstallDriver giving error?
I've been trying to use the functions "DiRollbackDriver" and "DiUninstallDevice" for rolling back/Uninstalling the driver for a device which shows error code 10 (device not working properly).
The ...
0
votes
1answer
75 views
What device does the cmd command 'dir' use?
Sorry for the unclear question!
The command prompt command 'dir' lists all files and directories in a directory, as you probably know.
I am reading "Subverting the Windows Kernel: Rootkits" at the ...
0
votes
2answers
214 views
No driver for Asus MeMO Pad to do application debug using eclipse
I have the same problem like in the following SO post-
I got a new Asus Memo Pad for debugging my android application in eclipse while running the
application in the Asus Memo Pad. But when I go to ...
1
vote
1answer
20 views
Skript to install a driver
There are problems in Windows 7 with device driver which should be installed and manufacturer has no real setup.
The needed files are on CD. But when device is connected, the device manager does not ...
0
votes
2answers
119 views
IOCTL device driver
can anyone explain for me ,what is IOCTL and what it is used for?
and how can I use it ,why cant I define new function that does the same work as IOCTL ?
thanks
0
votes
1answer
22 views
Is it bad practice to make expectations on unknown hardware devices?
While adapting a linux device driver to include another device of a certain vendor, I came across about 20 USB device id's the driver is matched against. It turns out that any of this devices used the ...
0
votes
0answers
50 views
Visual Studio 2012 associates .exe with .pdb, but it should associate with .sys
I am building Windows drivers with Visual Studio 2012. The solution has a driver build to create the .sys and .pdb. There is also a "Package" build to create a signed driver kit. There are two ...
1
vote
3answers
84 views
What does IN mean in Windows device driver functions?
I'm starting to learn how to program Windows drivers but can't seem to find anywhere that contains the definition of IN located in the argument declarations of functions. For example:
NTSTATUS ...
0
votes
2answers
118 views
Regarding how the parameters to the read function is passed in simple char driver
I am newbei to driver programming i am started writing the simple char driver . Then i created special file for my char driver mknod /dev/simple-driver c 250 0 .when it type cat /dev/simple-driver. it ...
0
votes
1answer
150 views
Can't install simple .inf file
Im trying to install a device driver using the "Add Hardware" wizard and I keep getting the following error after selecting the .inf file I am trying to install:
The folder you specified doesn't ...
0
votes
0answers
185 views
/dev/video0 : invalid argument
Why I am not able to read this file. I tried reading this file with cat as :
cat /dev/video0
But it says
cat: /dev/video0 : invalid arguments
Similarly, if I try to use dd as :
dd ...
0
votes
0answers
74 views
Interfacing printer with arduino and computer using existing device driver
I'm working on a project in which a arduino is serially interfaced with a printer.
The goal of the project is to have the microcontroller as a middle step in the communication flow computer-printer in ...
1
vote
0answers
34 views
cpu hung at insmod
I am trying to write a block device driver in such a way that the I/O request is handed over to a separate worker thread. The worker thread waits to get a request and then performs the actual I/O.
I ...
1
vote
3answers
146 views
device_create with existing device name
I'm learning how to write character device drivers as dynamically-loadable modules for the Linux. Typically I use the following sequence of function calls to register the device and create a device ...
0
votes
1answer
22 views
How to retrieve the value of DEVPKEY_Device_BusReportedDeviceDesc In Windows xp?
I can call SetupDiGetDeviceProperty to retrieve the value of DEVPKEY_Device_BusReportedDeviceDesc according to msdn document ...
0
votes
1answer
123 views
DM9601 Driver for u-boot on beagleboard
I'm trying to do a nfs boot from my Beagleboard. My Davicom Dm9601, was not detected from u-boot, hence its failing with the error "0 ethernet devices found" and "Remote device not responded"
I have ...
1
vote
1answer
36 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
104 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 ...
1
vote
1answer
52 views
How to support IA-32 for mmap on x86_64?
I need to support an old hardware, which user land library doesn't have source code, but I have the source code for the device driver. Therefore, I have to rewrite the device driver to support IA-32 ...
1
vote
1answer
119 views
How to hook notebook's hardware keys?
I've got an Acer Aspire 5740G and I want to intercept the hardware buttons. I wrote a C# application using SetWindowsHookEx().
For the volume buttons, for example, I receive VolumeUp and VolumeDown ...
0
votes
1answer
79 views
getting original MAC address using driver
Linux : uname -a :2.6.18 as well as 2.6.39
I am very new in it...
When the driver is first loaded, before ifconfig can change the MAC
address, the existing (permanent) MAC address is stored away, ...
0
votes
2answers
217 views
Windows C++: Get driver device ID
I'm writing a C++ program that should check Driver Device ID.
My input the driver name as it should appear in the Device Manager.
I tired to google, and I figured that:
I could get the driver ...
0
votes
0answers
172 views
How to Enable and Disable the IEEE 1394 OHCI Compliant Host Controller Programmatically in C#
I have the need to Enable and Disable the IEEE 1394 OHCI Compliant Host Controller on a semi-frequent basis. Normally I achieve this by going into Computer Management > Device Manager and then right ...
0
votes
0answers
29 views
how can i custom audio device's and driver's
I have a program that use's the right and left input's of a line in/mic in port but the mic that i own is a usb and I need to use one of the input's on the line in/mic in on the laptop at the same ...
0
votes
0answers
213 views
Kernel debugging Windows 7 through serial port
I have debugged drivers on VM (pipe connection) with Windows 7. Now I want to debug a driver in a laptop with Windows 7 (x64) but the WinDbg keeps waiting forever for the connection:
Microsoft (R) ...
1
vote
0answers
44 views
Creating Matlab Instrument driver
I am trying to create instrumentdriver file .mdd extension from VXI plug and play instrument driver. I am facing an issue that whenever i executed the command
...
0
votes
1answer
123 views
libusb in linux
I like to do usb programming with libusb.
I installed it using
$ apt-get install libusb-1.0
and then
$ apt-get install libusb-1.0-0-dev
but after I tried to use it in c code, there are compiler ...




