Part Number: TMS320F28379D
Other Parts Discussed in Thread: C2000WARE, CODECOMPOSER
Tool/software: Code Composer Studio
Dear support,
We would like to check USB speed by using usb_dev_bulk example on DSP and PC (from ~/tools/usb_bulk_example/Release).
For speed verification we send USB packet from PC and immediately read it . (The "-e" parameter option).
And after calculation we get speed 123Kbps ( 244 packets per second. Each packet 64 bytes)
I removed all debug options from DSP side , but result is the same.
I made changes in DSP instead of PC and removed all debug options - but get also 123Kbps
while(1)
{
//
// Nothing to do...everything happens in the interrupt context.
//
numberOfBytes = EchoNewDataToHost(psDevice, pvMsgData, 64);
}
Please help to understand it. USB speed should be 12Mbs (and not 123Kbps).
Thanks,Sabina