From f7ff2d416c3f29eee7f4647be3d320dbcf7ee318 Mon Sep 17 00:00:00 2001 From: Jacob Berg Potter Date: Sat, 19 Dec 2020 18:20:49 +0100 Subject: [PATCH] ports/freertos: add missing include of tcpip.h To fix build (lock_tcpip_core is not defined otherwise) --- contrib/ports/freertos/sys_arch.c | 1 + 1 file changed, 1 insertion(+) diff --git a/contrib/ports/freertos/sys_arch.c b/contrib/ports/freertos/sys_arch.c index 68a427fe..85683538 100644 --- a/contrib/ports/freertos/sys_arch.c +++ b/contrib/ports/freertos/sys_arch.c @@ -36,6 +36,7 @@ #include "lwip/sys.h" #include "lwip/mem.h" #include "lwip/stats.h" +#include "lwip/tcpip.h" #include "FreeRTOS.h" #include "semphr.h" #include "task.h"