schnupfen
October 15th, 2004, 05:51 AM
I have to write a program (VC++) wich communicates with a usb device (no HID). I want to download pics from a usb-camera and, in the end, let the camera take fotos.
Could anybody please help me?
I tried to use the CreateFile() function, but what file do I have to open?
Thanks
dave34
March 26th, 2007, 08:59 AM
Maybe this tool help you:http://www.jungo.com/embedded_usb_cdc.html
and also this one:http://www.jungo.com/cdc_acm_driver_demo.html
together they offer end-to-end solution for creating communication devices, from the USB firmware running on the device to the Windows communication driver connecting it.
djai
March 29th, 2007, 01:48 AM
As I know you can’t communicate directly to USB. You have to use a driver whether existing or deploying you own driver. If you really want to communicate to USB in VC++ program use following book
“USB complete”.
This book is with VB and VC++ code.
Thanx