diff --git a/HISTORY.rst b/HISTORY.rst index 50e008aa..15cd39fd 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -7,6 +7,8 @@ PlatformIO 2.0 2.8.2 (2016-01-??) ~~~~~~~~~~~~~~~~~~ +* Corrected RAM size for NXP LPC1768 based boards + (`issue #484 `_) * Exclude only ``test`` and ``tests`` folders from build process * Reverted ``-Wl,-whole-archive`` hook for ST STM32 and mbed diff --git a/platformio/boards/nxplpc.json b/platformio/boards/nxplpc.json index f85f5302..de29b022 100644 --- a/platformio/boards/nxplpc.json +++ b/platformio/boards/nxplpc.json @@ -9,7 +9,7 @@ "name": "NXP mbed LPC1768", "platform": "nxplpc", "upload": { - "maximum_ram_size": 32768, + "maximum_ram_size": 65536, "maximum_size": 524288 }, "url": "http://developer.mbed.org/platforms/mbed-LPC1768/", @@ -105,7 +105,7 @@ "name": "u-blox C027", "platform": "nxplpc", "upload": { - "maximum_ram_size": 32768, + "maximum_ram_size": 65536, "maximum_size": 524288 }, "url": "https://developer.mbed.org/platforms/u-blox-C027/",