A little trip around usbRequest_t shows that I'm wrong with rq->wValue.bytes[i] cause of there are only two bytes spreading into integer type. I see that there must be a pointer do data send from PC with size of rq->wLength. And it's not usbMsgPtr
I tried to use this code in the host software (with the upper avr code): char usbReportBuffer[128]; //... usb_control_msg(usbHandle, USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_ENDPOINT_OUT, CUSTOM_RQ_SET_ALL, 1, 0,usbReportBuffer, sizeof(usbReportBuffer), 5000); I always get "1" at first pos...
Hi! Now I'm trying to transfer data between my device and PC using libusb and custom requests. I can send 128 bytes from the device to computer already, but I'm in doubt about sending this array of data back to AVR. Would it be right if I use this construction to receieve data (avr-side)? #define CU...
I use MinGW that goes with Qt package. Code::Blocks use the same MinGW.
Using codeclocks i can compile the example (I also tested it with MCU with hid-data example firmware), using Makefile.windows and (edited) Makefile - can't.
Please, help me! I don't know how to solve this problem But I know that this is not a proplem of pc software - it works pretty with hid-data firmware. I think that problem should be around report ids...
I promise to buy a hobbyist license if this would work
Now I'm trying to teach my device how to transfer data, like hiddata example does. This is a part of hid descriptor: 0x06, 0x00, 0xff, // USAGE_PAGE (Vendor Defined Page 1) 0x09, 0x01, // USAGE (Vendor Usage 1) 0xa1, 0x01, // COLLECTION (Application) 0x15, 0x00, // LOGICAL_MINIMUM (0) 0x26, 0xff, 0x...
Plus if I try to rewrite the whole code in Code::Blocks, compiler returns "undefined reference to `usbhidOpenDevice(usbDevice**, int, char*, int, char*, int)'"