Hello to everyone here!
I'm developing a HID device (rx62n) and using the LVR generic_hid_cs_46.
The main purpose of the device is to perform data acquisition.
I have defined the input report size to 4096 bytes (4Kb).
Using interrupt transfers, when I send a single output report, I can read a single input report perfectly using a single call to Readfile().
My purpose is to be able to reply with multiple input reports to a single output report.
When I split a large input report (8Kb) to 2 and send them twice, I only get the last report in the inputReportBuffer (which is large enough).
What am I missing here? Is it possible at all to make such kind of transfer?
How can I actually stream data from the device?
Any advise would be very helpful!
Oren