I had the same problem. This is caused by the use of printf in the LWIP library. The Retarget.c file must be added to the project, or just add this smal code to main.c struct __FILE { int handle; };
FILE __stdout;
int fputc(int c, FILE *f) {
retur...