From 6c2df7d0e10d5b2f10f5b3ab2aa025609e12426b Mon Sep 17 00:00:00 2001 From: Ivan Kravets Date: Tue, 2 Feb 2016 19:47:11 +0200 Subject: [PATCH] Fix missing dependency (mbed framework) for Atmel SAM development platform // Resolve #487 --- HISTORY.rst | 2 ++ platformio/platforms/atmelsam.py | 4 ++++ 2 files changed, 6 insertions(+) diff --git a/HISTORY.rst b/HISTORY.rst index a838388e..eff06524 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -10,6 +10,8 @@ PlatformIO 2.0 * Better integration of PlatformIO Builder with PlatformIO IDE Linter * Fixed issue with removing temporary file while converting ``*.ino`` to ``*.cpp`` +* Fixed missing dependency (mbed framework) for Atmel SAM development platform + (`issue #487 `_) 2.8.2 (2016-01-29) ~~~~~~~~~~~~~~~~~~ diff --git a/platformio/platforms/atmelsam.py b/platformio/platforms/atmelsam.py index a5b64beb..0c604dc2 100644 --- a/platformio/platforms/atmelsam.py +++ b/platformio/platforms/atmelsam.py @@ -40,6 +40,10 @@ class AtmelsamPlatform(BasePlatform): "alias": "framework" }, + "framework-mbed": { + "alias": "framework" + }, + "tool-bossac": { "alias": "uploader" },