This content has been marked as final.
Show 2 replies
-
1. Re: How to achieve the more throughput from Full speed USB
shubhamt_41 Jan 22, 2011 8:30 AM (in response to yv.subbarao)Hi subba,
Try using more than 1 bulkIN endpoints and read them using asynchronous xferdata calls.
-shub
-
2. Re: How to achieve the more throughput from Full speed USB
ananda_26 Feb 25, 2011 3:19 AM (in response to yv.subbarao)subba,
Speed can be increased by using the asynchronous calls begindataxfer / waitforxfer / finishdataxfer and implementing buffering on the device side. Increasing the number of endpoints may not help since the interface used is going to remain the same so the IN packets will go one after the other. If the device is not capable of filling data at that speed it is not going to be able to do it with 2 endpoints as well since you've to service both.
Regards,
Anand