Hello, would like to make a suggestion if possible,
most of Lwip from Xilinx uses xil_printf, however this affects embedded projects that replaces this function, resulting in ugly mixed characters output.
For instance, xaxiemacif_physpeed.c(259) replace:
xil_printf("Link error, temp = %x\r\n", temp);
with:
LWIP_DEBUGF(NETIF_DEBUG, ("Link error, temp = %x\r\n", temp));
This way output from library can be enabled only when needed using BSP configuration.
Thank you.