Jan;
Thanks for the reply.
I finally was able to get the arrival and removal to work. The first time used to fail as _DeviceReady was false. I added a condition to check on this variable, if false I call also FindMyDevice.
I believe when you reference your example you wrote HID example, which I believe you meant C# Winusb example.
MY other question which I am still working on. If I call RequestToSendDataViaBulkTransfer(4096,buffername, byesRead, success) to request 4K of data at once.
For firmware I am using MikroC CDC library and I am just doing:
looping 64 times
{Fill 64 bytes buffer that points to USB RAM
USBDev_SendPacket(bulk in EP, the buffer, 64)
}
Is that the proper way to do it?
Thanks.