Skip to content

Commit

Permalink
Merge branch 'release/v3.6.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
ivankravets committed Oct 17, 2018
2 parents 7db3006 + 44a24e7 commit 8a2f974
Show file tree
Hide file tree
Showing 13 changed files with 42 additions and 196 deletions.
3 changes: 0 additions & 3 deletions .gitmodules

This file was deleted.

2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ env:
- PLATFORMIO_PROJECT_DIR=examples/arduino-internal-libs
- PLATFORMIO_PROJECT_DIR=examples/mbed-blink
- PLATFORMIO_PROJECT_DIR=examples/mbed-dsp
- PLATFORMIO_PROJECT_DIR=examples/mbed-rtos
# - PLATFORMIO_PROJECT_DIR=examples/mbed-rtos
- PLATFORMIO_PROJECT_DIR=examples/mbed-serial

install:
Expand Down
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ environment:
- PLATFORMIO_PROJECT_DIR: "examples/arduino-internal-libs"
- PLATFORMIO_PROJECT_DIR: "examples/mbed-blink"
- PLATFORMIO_PROJECT_DIR: "examples/mbed-dsp"
- PLATFORMIO_PROJECT_DIR: "examples/mbed-rtos"
# - PLATFORMIO_PROJECT_DIR: "examples/mbed-rtos"
- PLATFORMIO_PROJECT_DIR: "examples/mbed-serial"

install:
Expand Down
1 change: 0 additions & 1 deletion builder/frameworks/mbed
Submodule mbed deleted from 4db317
37 changes: 37 additions & 0 deletions builder/frameworks/mbed.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# Copyright 2014-present PlatformIO <[email protected]>
#
# 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"))
1 change: 0 additions & 1 deletion examples/mbed-events/platformio.ini
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,3 @@
platform = teensy
framework = mbed
board = teensy31
build_flags = -DPIO_FRAMEWORK_MBED_RTOS_PRESENT
3 changes: 0 additions & 3 deletions examples/mbed-rtos/.gitignore

This file was deleted.

65 changes: 0 additions & 65 deletions examples/mbed-rtos/.travis.yml

This file was deleted.

32 changes: 0 additions & 32 deletions examples/mbed-rtos/README.rst

This file was deleted.

38 changes: 0 additions & 38 deletions examples/mbed-rtos/lib/readme.txt

This file was deleted.

14 changes: 0 additions & 14 deletions examples/mbed-rtos/platformio.ini

This file was deleted.

34 changes: 0 additions & 34 deletions examples/mbed-rtos/src/main.cpp

This file was deleted.

6 changes: 3 additions & 3 deletions platform.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
"type": "git",
"url": "https://github.com/platformio/platform-teensy.git"
},
"version": "3.5.0",
"version": "3.6.0",
"packageRepositories": [
"https://dl.bintray.com/platformio/dl-packages/manifest.json",
"http://dl.platformio.org/packages/manifest.json"
Expand All @@ -24,7 +24,7 @@
},
"mbed": {
"package": "framework-mbed",
"script": "builder/frameworks/mbed/mbed.py"
"script": "builder/frameworks/mbed.py"
}
},
"packages": {
Expand All @@ -46,7 +46,7 @@
"framework-mbed": {
"type": "framework",
"optional": true,
"version": "~5.50904.0"
"version": "~5.51001.1"
},
"tool-teensy": {
"type": "uploader",
Expand Down

0 comments on commit 8a2f974

Please sign in to comment.