Other Parts Discussed in Thread: MSP432E401Y
I am trying to send around 4k of data using UDP. I have an application working if I send around 1400 bytes. But if I try and send 4k then I dont get any packets sent. Do I need to configure anything in LWIP to do this? Thanks
void eth_udp_tx()
{
struct pbuf *p;
err_t err;
p = pbuf_alloc(PBUF_TRANSPORT, 1400, PBUF_RAM);
if (p)
{
memcpy(p->payload, eth_tx_buf, 1400);
err = udp_sendto(new_udp_pcb, p, &udp_addr, udp_port);
pbuf_free(p);
}
}