Skip to content

Commit 8a2f974

Browse files
committed
Merge branch 'release/v3.6.0'
2 parents 7db3006 + 44a24e7 commit 8a2f974

File tree

13 files changed

+42
-196
lines changed

13 files changed

+42
-196
lines changed

.gitmodules

Lines changed: 0 additions & 3 deletions
This file was deleted.

.travis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ env:
88
- PLATFORMIO_PROJECT_DIR=examples/arduino-internal-libs
99
- PLATFORMIO_PROJECT_DIR=examples/mbed-blink
1010
- PLATFORMIO_PROJECT_DIR=examples/mbed-dsp
11-
- PLATFORMIO_PROJECT_DIR=examples/mbed-rtos
11+
# - PLATFORMIO_PROJECT_DIR=examples/mbed-rtos
1212
- PLATFORMIO_PROJECT_DIR=examples/mbed-serial
1313

1414
install:

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ environment:
77
- PLATFORMIO_PROJECT_DIR: "examples/arduino-internal-libs"
88
- PLATFORMIO_PROJECT_DIR: "examples/mbed-blink"
99
- PLATFORMIO_PROJECT_DIR: "examples/mbed-dsp"
10-
- PLATFORMIO_PROJECT_DIR: "examples/mbed-rtos"
10+
# - PLATFORMIO_PROJECT_DIR: "examples/mbed-rtos"
1111
- PLATFORMIO_PROJECT_DIR: "examples/mbed-serial"
1212

1313
install:

builder/frameworks/mbed

Lines changed: 0 additions & 1 deletion
This file was deleted.

builder/frameworks/mbed.py

Lines changed: 37 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
# Copyright 2014-present PlatformIO <[email protected]>
2+
#
3+
# Licensed under the Apache License, Version 2.0 (the "License");
4+
# you may not use this file except in compliance with the License.
5+
# You may obtain a copy of the License at
6+
#
7+
# http://www.apache.org/licenses/LICENSE-2.0
8+
#
9+
# Unless required by applicable law or agreed to in writing, software
10+
# distributed under the License is distributed on an "AS IS" BASIS,
11+
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
# See the License for the specific language governing permissions and
13+
# limitations under the License.
14+
"""
15+
mbed
16+
17+
The mbed framework The mbed SDK has been designed to provide enough
18+
hardware abstraction to be intuitive and concise, yet powerful enough to
19+
build complex projects. It is built on the low-level ARM CMSIS APIs,
20+
allowing you to code down to the metal if needed. In addition to RTOS,
21+
USB and Networking libraries, a cookbook of hundreds of reusable
22+
peripheral and module libraries have been built on top of the SDK by
23+
the mbed Developer Community.
24+
25+
http://mbed.org/
26+
"""
27+
28+
from os.path import join
29+
30+
from SCons.Script import Import, SConscript
31+
32+
Import("env")
33+
34+
# https://github.com/platformio/builder-framework-mbed.git
35+
SConscript(
36+
join(env.PioPlatform().get_package_dir("framework-mbed"), "platformio",
37+
"platformio-build.py"))

examples/mbed-events/platformio.ini

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,4 +11,3 @@
1111
platform = teensy
1212
framework = mbed
1313
board = teensy31
14-
build_flags = -DPIO_FRAMEWORK_MBED_RTOS_PRESENT

examples/mbed-rtos/.gitignore

Lines changed: 0 additions & 3 deletions
This file was deleted.

examples/mbed-rtos/.travis.yml

Lines changed: 0 additions & 65 deletions
This file was deleted.

examples/mbed-rtos/README.rst

Lines changed: 0 additions & 32 deletions
This file was deleted.

examples/mbed-rtos/lib/readme.txt

Lines changed: 0 additions & 38 deletions
This file was deleted.

0 commit comments

Comments
 (0)