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

0
votes
1answer
15 views

Windows: suppress warning when plugging in unformatted flash drive

I'm working on a device that writes some information directly to a flash drive, without using any file system (it just writes blocks of data directly to the disk sectors). After the flash drive is ...
1
vote
0answers
10 views

How to control a kernel driver and run after SD card or internal storage equipment load?

I create an Android kernel driver. The main function is reading storage in SD card or internal storage like a text file in NAND. Then parse the file to set some parameters. I compiled into the module ...
0
votes
0answers
8 views

Aspire V3-731 Wifi

I have a Aspire V3-731 with wifi connection problems. I have read some other forums and still have same problem. It disconnects me automaticly from using internet on wi-fi. Have installed the ...
-1
votes
0answers
6 views

Which opensource driver should I use? [closed]

I'm working on a project and should use the opensource driver of AMD. But I dont know which one to choose. My environment is an Opensuse OS and 1.AMD Radeon HD 7850 + 2.AMD Radeon HD 7770 + 3.AMD ...
1
vote
1answer
49 views

Selenium c#: How to launch Internet Explorer driver in a specific version (IE8 for example)

In java it is possible to set an IE version for internet explorer driver by passing Desired Capabilities. That doesn't work in C#. I would expect it to look something like: DesiredCapabilities ...
-2
votes
0answers
87 views

Delphi custom single-file Virtual File System [closed]

How can I create a Windows NT (just Windows 7+ is fine) disk driver in Delphi for own/custom virtual file system? I need something simple (without all the actual data structures and such since I want ...
1
vote
0answers
24 views

How to trap file access attempts with a filter driver (kernel) and offer dialog to allow/deny (user)?

I've been looking at Windows's File System Filter Drivers. I started with this "FsFilter" example: http://www.codeproject.com/Articles/43586/File-System-Filter-Driver-Tutorial With effort, I ...
0
votes
0answers
12 views

VS2012 driver package using wrong output directory in x64

This appears to be a bug in VS2012 but I'm wondering if anyone has a workaround or can explain what's wrong. I followed this page for creating a simple KMDF driver in vs2012 here. Before building, I ...
0
votes
1answer
39 views

org.postgresql.util.PSQLException: Connection refused

I wanted to test execution of function of an indexing from other host because this function not absolutely correctly fulfilled in hadoop to the program. But I had problems with connection to a ...
2
votes
1answer
38 views

No suitable driver found for jdbc:postgresql://192.168.1.8:5432/NexentaSearch

I wrote following the java program import java.io.*; import java.util.*; import java.sql.Connection; import java.sql.DriverManager; import java.sql.ResultSet; import java.sql.SQLException; import ...
1
vote
1answer
13 views

linux driver rdtsc implicit declaration

I wrote a linux driver module (which is on x86_64), I just call rdtsc, but compiler printed: error: implicit declaration of function 'rdtsc' Which header file should I include?
-1
votes
0answers
4 views

Using Oracle RAC with weblogic 9.2 [closed]

We need to use ORACLE 11g RAC with weblogic 9.2 and Oracle JDBC driver, 10.2.0.2.0.Need steps to use failover capability using multi datasource configuration in weblogic 9.2 using administration ...
0
votes
0answers
12 views

MongoDB C++ Driver: GlobalInitializerRegisterer throws “DuplicateKey throwSockExcep”

I am trying to link mongoclient static library with my shared library under 64-bit Ubuntu. I have installed mongodb c++ client as explained step-by-step here. The (only?) thing I needed to change ...
0
votes
1answer
28 views

Thread in driver don't send packets

I have this NDIS Filter Driver. I try to start in my driver a thread, that will send packet every 10 seconds. To do that, I use this code: LARGE_INTEGER TimePrev, TimeNow; void ThreadedAction() { ...
0
votes
1answer
17 views

Driver INF File: Identifying supported OS Architecture from driver inf file

I am trying to parse INF file of drivers in my code to identify the OS architecture supported by them. For this I'm referring to the "INF MANUFACTURER SECTION" link: ...
0
votes
1answer
17 views

What is needed to design on windows a driver for bluetooth mouse?

What is needed to design on windows a driver for bluetooth mouse? Do I need to use .NET framework for that? and do I need to create my own code from scratch is there an existing windows-based api for ...
2
votes
0answers
28 views

In Linux Driver, how to disable a specific USB Device [closed]

Assume a USB devices is powered by USB bus. Sometimes the firmware in the USB device encounter a problem and can't recovery by itself. I have to unplug and plug the USB device from the host. Is there ...
0
votes
0answers
9 views

Mouse/touchpad rotation

I need to offset the orientation of my mouse input by -45 degrees. I've seen this done in a program called Sakasa Mouse, so I know it can be done. However, this program makes the mouse feel very ...
-1
votes
0answers
7 views

Change default mouse orientation\rotation in windows

I'm making my own gaming mouse prototype and have stolen the optics from a Razer mouse. To make the electronics fit into my new mouse casing I had to rotate the electronics about 15 degrees ...
0
votes
1answer
32 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
28 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
12 views

disabling “treat warning as errors” in WDK

I'm building a printer driver using the Build utility of the WDK. I need to turn off "Treat warnings as errors". It is turned off in the Visual Studio project file but that apparently doesn't affect ...
0
votes
0answers
31 views

Build Android apps server

I'm building an Android app for printing documents by the application server that will send the document to the server and the server sends the document to the selected printer to print (on the server ...
1
vote
1answer
50 views

How can I write an SPI driver for Zynq 7000 ARM development board?

I'm going to write an SPI driver for an ARM devlopment board. It is not used with Linux. Yesterday, I read the QSPI driver that Xilinx provided and I tried it successfully. However, I would really ...
1
vote
1answer
38 views

How to determine the IRQ number for a USB device?

I am new to driver development. However, I purchased an OSR USB FX2 Learning Kit, which comes with sample codes for Windows kernel/user mode driver. However, I am writing the driver in Linux (Ubuntu ...
-1
votes
0answers
19 views

Cannot unload driver

I'm using CreateService, StartService to load my driver. After doing that I can see some messages printed by DbgPrint calls and Driver and Device objects in WinObj. When calling ControlService() with ...
-1
votes
0answers
26 views

POS (point of sale) printer drivers [closed]

I am currently on the search for information regarding support for POS printers. My goal is to have the support of as many printers as possible from all the different brands, such as Epson, Orient, ...
-1
votes
0answers
8 views

ASrock motherboard driver instillation problems

Just built a new system for a friend, however im having trouble installing the drivers from the disk for the motherboard. Its a ASrock series 970 extreme 3 and it keeps giving me an error every time i ...
0
votes
0answers
19 views

OS X - broadcasting HID events

Good afternoon everyone. I have a USB gamepad that I'm attempting to write a user-space driver for. Originally, I wrote the driver to work with Linux (using libusb), and everything seems to work ...
0
votes
1answer
19 views

linue kernel driver, dereference pointer and printk

this is a testing device driver code. I have kernel space data which is dptr->data. Afte I copyt it to user. I would like to printk it. But my printk seems prints out address. if (copy_to_user(buf, ...
0
votes
2answers
26 views

Eclipse isn't Seeing Nexus 7

I bought a new Nexus 7, and Eclipse cannot see it. It is appearing in Device Manager as Android Device ---> Android Composite ADB Interface. There is no other devices category, and I have updated ...
0
votes
1answer
26 views

Windows NDIS Driver: Concurrent Read/Write on a single device (IRP_MJ_READ/WRITE)

Starting with the ndisprot sample from Microsoft I try to write a NDIS protocol driver. From User space I try to read and write to the device simultaneous (out of two threads). Since I don't receive ...
0
votes
0answers
28 views

Where to start Android drivers with I2C

Thanks for taking a moment to read my question. I am a starving intern and I really want to get some work done! I have a sensor device, OEM, that I will be adding to a dragonboard like this. ...
0
votes
3answers
49 views

How to use ORMLite with the native Android driver?

I want use ORM with ORMLite. But, the example show how use JDBC driver, I want use SQLite native Android driver, how I can do with this ? It's possible ? Can you show me just an example how get ...
1
vote
1answer
26 views

How can I pre-install self-signed USB drivers on Windows XP?

I'm trying to get some USB drivers for medical devices pre-installed on our corporate workstations. Unfortunately, these drivers are not signed. Based on some research done here and elsewhere, I ...
0
votes
0answers
20 views

Linux driver PCI Burst transfer

i have a question about read and write using bursts on PCIe. I have a fpga which is connected through PCIe to the cpu. I have a simple driver which is just for testing. The driver writes and reads ...
-2
votes
0answers
37 views

Ubuntu 12.04 randomly freezes (with or without using Google Chrome) [closed]

it's been happening for about 2 weeks that ubuntu 12.04 lts (installed on a laptop sony vaio sve1513q1es) randomly frezees (mouse and keyboard are blocked, I can't switch to alt+ctrl+f1 and nothing ...
0
votes
1answer
18 views

sealing conflic with oracle ojdbc

After many search, i still got the following issue : sealing violation: package oracle.jdbc is sealed In my classpath there is one, and only one ojdbc.jar I tried ojdbc14, ojdbc16, ojdbc5 and ...
0
votes
2answers
50 views

How does windows identify a USB device uniquely?

How does windows identify a USB device uniquely, even though the device data supplied from the USB device is common to all devices of that make ? To state this alternatively, Windows can distinguish ...
0
votes
0answers
7 views

Fire fox webdriver page zoom Level

when i'm running my test suite using fire fox,default test running pop up zomm level comes as 45%.is there a way to change this default zoom level to 100%. hope you will help me. thank you. /rukmal
0
votes
0answers
11 views

How can I get the corresponding MSI message in an interrupt?

We are using an FPGA on a PCIe card. I am able to reserve the proper resources and the MSI interrupt fires correctly. My problem is discerning the interrupt sources from: My Linux driver receives only ...
0
votes
0answers
46 views

2 Different Bluetooth stacks on one Windows PC

I should provide some Windows application with one of Bluetooth profiles, which is absent in standard Windows MS Bluetooth stack: Handsfree profile (HFP) client. Currently I am examining 2 decisions: ...
0
votes
0answers
22 views

How to uniquely identify USB HID class device? [closed]

I would like to identify a USB keyboard uniquely(something equivalent to unique mac-id for the Ethernet cards) on a computer. Does the USB HID profile has a support for such identification ? If so ...
0
votes
1answer
23 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 ...
-1
votes
0answers
14 views

n-6230 wireless driver windows 8 [closed]

Can't install Windows 8 64bit driver from Intel's driver page for my N-6230 hw. I have a Samsung NP900X3B-A01US laptop. The file loads, I see the animated progress image but after 5-10 seconds it ...
0
votes
0answers
44 views

Android 2.3 touchscreen buttons always return long press result

I'm trying to port a touchscreen to my beagleboard, which runs Android 2.3.4. The touchscreen controller is ft5406. In fact, I find the driver online, and the touchscreen works successfully. However, ...
0
votes
0answers
43 views

oracle jdbc driver not working as i wanted

I'm a bit confused with oracle jdbc. i use ojdbc16 by following those step i get : 1) adding ojdbc.jar to my build path -> everything work in local ( connexion, request etc..) 2) trying to test ...
0
votes
1answer
14 views

blue screen error: DRIVER_RETURNED_HOLDING_CANCEL_LOCK

I write a driver in windows 7. And I use pedding IRP to send event to application from driver. The key Code like: PIRP PeddingIRP; ... VOID PtDriverCancelIRP(IN PDEVICE_OBJECT DeviceObject, IN PIRP ...
6
votes
1answer
129 views

Creating a virtual monitor/virtual display device [closed]

I'm trying to create a "virtual monitor" in Windows (XP & newer). For example, let's say my desktop looks like this: I want to add a monitor virtually so it looks like this without any change ...
0
votes
0answers
14 views

Can I Read a key of Registry in DriverEntry?

I am writing a file system filter driver to forbid invalid file accessing. As a junior, I use the example provided by MS which is called Sfilter. Although it's a little old, while well basic. My ...

1 2 3 4 5 35