obsw/bsp_z7/testEth.c

12 lines
176 B
C

#include "lwip/tcpip.h"
#include "FreeRTOS.h"
#include "task.h"
#include "xethernet.h"
int testEth(){
tcpip_init(NULL, NULL);
xethernet_init();
vTaskStartScheduler();
}