From 4109fb7d073b365035756ad123e4d450e4db50e0 Mon Sep 17 00:00:00 2001 From: Andreas Rebert Date: Fri, 6 Dec 2013 15:36:37 +0100 Subject: [PATCH] [LPC4088]: Networking was broking when splitting peripheral RAM into two sections --- libraries/net/lwip/lwip/lwipopts.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/libraries/net/lwip/lwip/lwipopts.h b/libraries/net/lwip/lwip/lwipopts.h index 4d07680dbc..8282ff5d40 100644 --- a/libraries/net/lwip/lwip/lwipopts.h +++ b/libraries/net/lwip/lwip/lwipopts.h @@ -48,7 +48,11 @@ // 32-bit alignment #define MEM_ALIGNMENT 4 +#if defined(TARGET_LPC4088) +#define MEM_SIZE 15360 +#elif #define MEM_SIZE 16362 +#endif #define PBUF_POOL_SIZE 5 #define MEMP_NUM_TCP_PCB_LISTEN 4