Hi, I am basing an application off the GenericHid.cs program, and I have a simple question. I want to send 46,080 bytes (256 * 180) of data with the MyHid.SendOutputReportViaControlTransfer function. I want to know: do I have to call this function in a for loop 720 times (46,080 bytes / 64 bytes per packet), or can I call it once with a byte[] of size 46,080 and will the hid.dll will take care of the 64 byte packets? Thank you,
-Robby