Search found 20 matches

by schwa226
Fri Mar 05, 2010 8:49 pm
Forum: V-USB
Topic: Help with usbHidReportDescriptor
Replies: 10
Views: 8430

Re: Help with usbHidReportDescriptor

Any hint how to fix this?

EDIT: PATH variable was needed, after a reboot it's working.

One question about the hidtool: Is there a MSDN documentation how the device get choosen?
Better would be an example for Delphi...
by schwa226
Fri Mar 05, 2010 8:08 pm
Forum: V-USB
Topic: Help with usbHidReportDescriptor
Replies: 10
Views: 8430

Re: Help with usbHidReportDescriptor

I got the AVR part now compiled but I have problems with the command line tool: C:\HID\AVR\vusb-20090822\examples\hid-data\commandline>make -f Makefile.windows gcc -O -Wall -c hidtool.c -o hidtool.o process_begin: CreateProcess(NULL, gcc -O -Wall -c hidtool.c -o hidtool.o, ...) failed. make (e=2): D...
by schwa226
Fri Mar 05, 2010 5:59 pm
Forum: V-USB
Topic: Help with usbHidReportDescriptor
Replies: 10
Views: 8430

Re: Help with usbHidReportDescriptor

Ok, at first: if the Usage is != Keyboard or Mouse the second device like the picture is showing will apear. If the Usage != Keybaord or Mouse GetRawInputDeviceInfo will not find the Device. Looks like only Keyboard & Mouse are supported. So now I don't get it working! I tried also this: char Re...
by schwa226
Fri Mar 05, 2010 3:06 pm
Forum: V-USB
Topic: Help with usbHidReportDescriptor
Replies: 10
Views: 8430

Re: Help with usbHidReportDescriptor

Hi, thx for this info! I found the example and i modified it to 6 byte transfer: PROGMEM char usbHidReportDescriptor[21] = { 0x05, 0x01, // USAGE_PAGE (Generic Desktop) 0x09, 0x01, // USAGE (Vendor Usage 1) 0xa1, 0x01, // COLLECTION (Application) 0x15, 0x00, // LOGICAL_MINIMUM (0) 0x26, 0xff, 0x00, ...
by schwa226
Thu Feb 11, 2010 9:25 am
Forum: V-USB
Topic: Help with usbHidReportDescriptor
Replies: 10
Views: 8430

Help with usbHidReportDescriptor

Hi, I'm new to V-USB. I found the example 17-Keys HID with keyboard emulation. I will make a project for an IR receiver (RC5,RC6,..) I want to send the raw received code to the host. As in MSDN descripted it is possible to get RAW data from HID devices. My problem is now to make a right usbHidReport...