Hi,
I am trying out example C2 & C6 from MSP430 USB Developers Package Version 3.10.00 on MSP430F5529..
I manage to get more than 500KB/s for C6 but only around 200KB/s for C2. Why is it slower for C2 (receiving)? How can I make it faster? I am using Tera Term Pro "Send file". Is it related? Any other apps I can use to try out C2?
When I try to combine C2 and C6 (insert USBCDC_receiveData(1k) right before cdcSendDataInBackground()), trying to send and receive data at the same time, I find that the receiving end is a lot slower.
I tried to add __delay_cycle() in between USBCDC_receiveData() and cdcSendDataInBackground(), to give more time for receiving data. I find that the sending speed reduce by a lot with small increase on receiving speed.
What is the best way to send and receive data at maximum rate?
Is the DMA shared between send and receive if I combine C2 and C6 this way? Will this affect the speed?
Thanks,
Mun Soon