|
- # Copyright 2014-present PlatformIO <contact@platformio.org>
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- """
- mbed
-
- The mbed framework The mbed SDK has been designed to provide enough
- hardware abstraction to be intuitive and concise, yet powerful enough to
- build complex projects. It is built on the low-level ARM CMSIS APIs,
- allowing you to code down to the metal if needed. In addition to RTOS,
- USB and Networking libraries, a cookbook of hundreds of reusable
- peripheral and module libraries have been built on top of the SDK by
- the mbed Developer Community.
-
- http://mbed.org/
- """
-
- from os.path import join
-
- from SCons.Script import Import, SConscript
-
- Import("env")
-
- # https://github.com/platformio/builder-framework-mbed.git
- SConscript(
- join(env.PioPlatform().get_package_dir("framework-mbed"), "platformio",
- "platformio-build.py"))
|