Hi,
I'm trying to send data across the ethernet cable at a rate of 5MB/s or higher. I have 2 ethernet cards on my PC and i have tried sending UDP data from one card to the other and it works. With this i was able to achieve a rate of about 6.2MB/s. I used a struct with a char array as follows:
struct myStruct{
int num;
char data[32768];
}
But when i moved the code into CCS and tried sending the UDP messages from my EVM6678 board to my PC, nothing is received on my PC side. I understand there's this MTU which limits the maximum packet size to 1500bytes.
Is there anyway i can solve this? By either increasing the MTU or some other settings elsewhere which i'm unaware of?
Thank you so much for your time.