NIOSII/f Truncating UDP packets
I am writing an application using a NIOS II to transmit UDP packets at a modest rate. Using a NIOS II/e, the processing rate was insufficient, so I moved to a NIOS II/f. The packets I need to send are just over 1kByte (1044 bytes).
As a demonstrator, I now have an application based on the standard SSS, that sends a UDP packet whenever I packet is received. The packet is 1100 bytes.
This works fine on NIOS II/e. The packets are received and the reply received on a PC app.
When I switch the processor to a NIOS II/f (changing nothing else), the application appears to work from the NIOS end without error, but the packets actually sent by the system are incomplete. Looking at them with Wireshark they are not the correct length. The headers are fine, but the total number of bytes varies from 400bytes up to the correct size. As such, they do not arrive in the application as the size specified in the header does not match the actual packet size.
Any ideas why there would be a difference between e & f NIOS II variants?