TI Team,
I'm using LaunchXL2 (TMS570LC4357) to receive data over Ethernet and for that I'm using LWIP. I'm able to successfully receive data over UDP and transmit the received data to another IP address using LWIP. The received Ethernet packet size is 1316 bytes and I can see each value by using variable of type structure pBUF. Now, I want to transmit this data (all 1316 bytes) using MibSPI.
I can access each byte group through the variable p->payload (where p is a pbuf structure variable). Similarly I can access all the remaining bytes through p->payload->payload and so on.
The question here is, how do I transmit this entire Ethernet packet using MibSPI as the max buffer size is 256 bytes. Can someone please guide me?
P.S.: I've already implemented MibSPI loopback of 256 bytes.
Thanks,
Trivedi