drivers

USB programming

独自空忆成欢 提交于 2019-12-02 15:54:27
I want to program a microcontroller (AVR) to control some leds through USB. It's just out of interest in how to build and program USB devices. There are some AVR microcontrollers that support the USB protocol or I could implement the USB protocol in an another microcontroller myself, but I wonder what to use to write your own drivers on the computer. My level in system programming: total noob (hence the question) So what is the literature you people would advice to get good knowledge of the USB technology and how to write your own drivers and beyond? P.S.: I know: C (probably will need it here

compile driver on linux with make

一笑奈何 提交于 2019-12-02 09:53:08
问题 What does this error message mean? I am trying to run make. It looks like configure is missing. Configure is part of the kernel source? make -C /lib/modules/4.2.0-19-generic/build SUBDIRS=/home/glochild/Downloads/AX88179_178A_LINUX_DRIVER_v1.10.0_SOURCE modules make[1]: Entering directory '/usr/src/linux-headers-4.2.0-19-generic' CC [M] /home/glochild/Downloads/AX88179_178A_LINUX_DRIVER_v1.10.0_SOURCE/ax88179_178a.o /home/glochild/Downloads/AX88179_178A_LINUX_DRIVER_v1.10.0_SOURCE/ax88179

How do I install drivers using Burn and DPInst after MSI installation?

耗尽温柔 提交于 2019-12-02 07:23:39
I have a setup MSI for our application, and I also have signed FTDI drivers that need to be installed as well. I'd like for them to be installed with Burn rather than the WiX MSI to keep CustomActions out of the MSI (however, I've tried the CA route as well). I've tried putting the instruction in an ExePackage , but the SourceFile attribute asks for the file location during build, not runtime (e.g. <ExePackage Id="InstallDrivers" DisplayName="Installing Drivers" SourceFile="[InstallFolder]Drivers\DPInst.exe" InstallCommand="/SA /SW" PerMachine="yes" After="MyMSISetup" Description="Installing

Software to receive printjobs and forward them to printers in a LAN

▼魔方 西西 提交于 2019-11-30 16:35:33
I want to create a software which windows will detect it as a installed printer driver and list that software under "Devices and Printers" Just like the ImagePrinter sowftware, you can access it through following link. http://sourceforge.net/projects/imageprinter/ when this Image Printer is installed on a computer, windows lists it under Printers and Devices so we can right click and share it in our network. LAN users can add this as a remote printer and send print jobs to it, which it will in turn convert those print jobs to image format (jpg etc.) and save in a specified directory. What I

Inno setup: install drivers with rundll32 or dpinst?

倖福魔咒の 提交于 2019-11-30 15:36:26
I am trying to install drivers with Inno setup and it looks like there are (at leas) two way to do this: add DPinst.Exe to the or run rundll against the .inf file. I know there is two different version of DPinst for x86 and x64, are there different version depending on the OS (I need to support XP, Vista and 7) Do I need admin permission for these methods? Which method is recommended? You use the same DPInst version for all versions of the operating systems; the only distinction is 32-bit vs. 64-bit. The WDK comes with both 32-bit and 64-bit versions. Personally, here's what I do (on InnoSetup

What is a good resource to get started with Windows file system driver development?

主宰稳场 提交于 2019-11-30 12:17:36
问题 What is a good resource to get started with Windows file system driver development for a newbie? 回答1: Windows NT File System Internals by Rajeev Nagar. OSR Online's File System Resource page (and OSR Online in general): http://www.osronline.com/section.cfm?section=20 The NTFSD mailing list/forum (also hosted by OSR): http://www.osronline.com/page.cfm?name=ListServer And starting with Vista, the Windows Driver Kit (WDK), which used to be called the DDK, now includes the Installable File

Using LINQ to Entity Framework with DB2

南笙酒味 提交于 2019-11-30 07:54:57
Is there an IBM Driver so we can use Linq to Entity framework to connect to DB2 and generate the DB2 entities on the desinger edmx file? Any links would be greatly appreciated 7 is out. You can install DB2 9.7 client in your pc to connect to any DB2 version. You can create edmx file to DB2 8.2 database too using this 9.7 client. While developing you might require a visual studio debugger similar to that of Scott's - Linq to SQL debug visualizer. In that case feel free to download my RV's Linq to Entity visualizer at http://www.rajavenkatesh.com/projects.aspx Good luck RV Yes. Register yourself

Device driver to act as a virtual web camera

只愿长相守 提交于 2019-11-30 04:05:10
I'm looking for writing virtual camera drivers. Does anybody has idea? Any book that would be helpful or any link. Adding more details: I have developed a device driver which saves the image to disk and the display uses the device driver to display the image. The performance does not seem good. The fns. that I have used are: //to capture GetDesktopWindow() CreateCompatibleBitmap() Save() //to display WM_MOUSEMOVE giving a call to capture and display every time but the display is not continuous and appears only after window goes out of focus and comes in focus again Should I use some other

What is a good resource to get started with Windows file system driver development?

两盒软妹~` 提交于 2019-11-30 02:26:03
What is a good resource to get started with Windows file system driver development for a newbie? Windows NT File System Internals by Rajeev Nagar. OSR Online's File System Resource page (and OSR Online in general): http://www.osronline.com/section.cfm?section=20 The NTFSD mailing list/forum (also hosted by OSR): http://www.osronline.com/page.cfm?name=ListServer And starting with Vista, the Windows Driver Kit (WDK), which used to be called the DDK, now includes the Installable File Systems (IFS) Kit: http://www.microsoft.com/whdc/devtools/wdk/default.mspx Just a heads up - Windows file system

Inno setup: install drivers with rundll32 or dpinst?

偶尔善良 提交于 2019-11-29 22:09:13
问题 I am trying to install drivers with Inno setup and it looks like there are (at leas) two way to do this: add DPinst.Exe to the or run rundll against the .inf file. I know there is two different version of DPinst for x86 and x64, are there different version depending on the OS (I need to support XP, Vista and 7) Do I need admin permission for these methods? Which method is recommended? 回答1: You use the same DPInst version for all versions of the operating systems; the only distinction is 32