0
votes
2answers
57 views
Is there software or code to alter USB power output
I had a look at this and this but no one sounded particularly sure of their ideas and I'm kind of after a different thing anyway. I want to hook my usb power cables (red and black) …
15
votes
3answers
587 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 …
0
votes
1answer
43 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?
1
vote
2answers
40 views
How to write software for my touchpad?
I have some ideas for improvements on my touchpad, ranging from the run of the mill scroll horizontally at the bottom, tapzones for right click, to more complicated ones. But I hav …
2
votes
2answers
71 views
Linux Kernel: copy_from_user - struct with pointers
Hello,
I've implemented some kind of character device and I need help with copy_ from_user function.
I've a structure:
struct my_struct{
int a;
int *b;
};
I initialize it i …
9
votes
5answers
144 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 lang …
0
votes
1answer
18 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 …
5
votes
3answers
37 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, prima …
1
vote
7answers
121 views
Virtual Webcam Driver
Hi
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 CSourceStrea …
4
votes
3answers
116 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? I …
-2
votes
0answers
64 views
Motherboard Drivers for K9N ultra MS 7250 [closed]
Where do i get motherboard drivers for the K9N ultra MS 7250
0
votes
2answers
136 views
Iphone device token - NSData or NSString
Hi Guys,
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 notifica …
1
vote
2answers
92 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 nothin …
0
votes
1answer
89 views
programming touchpad of laptop
I want to write a program which can control my cursor movements depending on the the way I move my finger on the touchpad. I want my program to get the location where the user tou …
2
votes
2answers
81 views
how to associate the the device in /dev/ with the actual driver
Hi ,
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, …
