From 7a1703de23d15919fb1ac2a245ec649a6cdd4af1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mika=20Lepp=C3=A4nen?= Date: Fri, 25 May 2018 12:35:02 +0300 Subject: [PATCH] Made lwip memory configuration more specific for NXP targets There is a configuration problem with UBLOX_C027 cellular because of missing LWIP memory configuration for the target. Added configuration for LPC1768, LPC4088, LPC4088_DM targets and changed NXP to more specific LPC546XX. --- features/FEATURE_LWIP/lwip-interface/mbed_lib.json | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/features/FEATURE_LWIP/lwip-interface/mbed_lib.json b/features/FEATURE_LWIP/lwip-interface/mbed_lib.json index 6177d1fe58..246f15acda 100644 --- a/features/FEATURE_LWIP/lwip-interface/mbed_lib.json +++ b/features/FEATURE_LWIP/lwip-interface/mbed_lib.json @@ -107,7 +107,16 @@ "Freescale": { "mem-size": 36560 }, - "NXP": { + "LPC1768": { + "mem-size": 16362 + }, + "LPC4088": { + "mem-size": 15360 + }, + "LPC4088_DM": { + "mem-size": 15360 + }, + "LPC546XX": { "mem-size": 36496 } }