-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Hi,
I'm new to Windows device driver programming. I know that certain operations can only be performed at IRQL PASSIVE_LEVEL. For example, Microsoft have this sample code of how to write to a file from a kernel driver:
if (KeGetCurrentIrql() != PASSIVE_LEVEL)
return STATUS_INVALID_DEVICE_STATE;…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
I'm trying to modify the Android device driver for calibre (an e-book management program) so that it identifies devices by only vendor id and product id, and excludes BCD.
The driver is a fairly simply python plugin, and is currently set up to use all three numbers, but apparently, when Android…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Greetings all,
I'm trying to implement driver for an embedded device with generic communication media layer. Not sure what is the best way to do it so I'm seeking an advice from more experienced stackoverflow users:). Basically we've got devices around the country communicating with our head office…
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
Kernel or device driver programming is possible in Java?
>>> More
-
as seen on Stack Overflow
- Search for 'Stack Overflow'
My device /dev/my_inc is meant to take a positive integer N represented as an ascii string, and store it. Any read from /dev/my_inc will produce the ascii string representation of N + 1.
The problem is that when I cat /dev/my_inc, I only get the first byte of myinc_value output to my shell, even…
>>> More