forked from ROMEO/obsw
12 lines
176 B
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();
|
|
} |