Mbed with some light patches

@Sam Grove Sam Grove authored on 4 Aug 2016
TESTS Update thread stack size for NRF based targets in rtos tests. 7 years ago
docs Fixing typos, grammar, and general English in mbed OS 5 testing doc 7 years ago
features Fixed indirect-dependency of mbed-client-classic through Socket.h 7 years ago
hal Merge pull request #2375 from geky/expose-nsapi 7 years ago
libraries Revert "Decrease nrf51 semaphore test stack size" 7 years ago
rtos Merge pull request #2238 from OpenNuvoton/nuc472 7 years ago
tools Merge pull request #2377 from sarahmarshy/flag_revision 7 years ago
.gitattributes Added .gitattributes for automatic LF line ending conversion 10 years ago
.gitignore dont track .mbed files created by mbed-cli 7 years ago
.travis.yml Add the toolchain api test to the travis CI 7 years ago
CONTRIBUTING.md Mentioned the Contributor Agreement in Contributing.md 9 years ago
DOXYGEN_FRONTPAGE.md Very minimal text 7 years ago
LICENSE Add Apache v2 LICENSE file 10 years ago
MANIFEST.in Further changes to reflect workspace_tools to tools rename 7 years ago
README.md update Nucleo-F410RB 7 years ago
mbed_lib.json Added config option for stdio baud rate 7 years ago
requirements.txt Requirements - fix progen def name - use dashes 7 years ago
setup.py Setup - fix progen def name - use dashes 7 years ago
README.md

mbed SDK

Build Status

The mbed Software Development Kit (SDK) is a C/C++ microcontroller software platform relied upon by tens of thousands of developers to build projects fast.

The SDK is licensed under the permissive Apache 2.0 licence, so you can use it in both commercial and personal projects with confidence.

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.

Documentation

Supported Microcontrollers and Boards

View all on the mbed Platforms page.

NXP:

Freescale:

STMicroelectronics:

Nordic:

Renesas:

Silicon Labs:

Atmel:

Supported Toolchains and IDEs

The current mbed exporters scripts (IDE support) will be replaced by Project generator (=progen). Any new IDEs support, should be implemented using progen API - add IDE to progen, use progen API to generate a mbed project.

API Documentation

Community

For discussing the development of the mbed SDK itself (Addition/support of microcontrollers/toolchains, build and test system, Hardware Abstraction Layer API, etc) please join our mbed-devel mailing list.

For every topic regarding the use of the mbed SDK, rather than its development, please post on the mbed.org forum, or the mbed.org Q&A.

For reporting issues in the mbed libraries please open a ticket on the issue tracker of the relevant mbed official library.

Setup

Skip any step where a compatible tool already exists

  1. Install Python 2.7.9 or above and make sure it's added to path
  2. Install Git and make sure it's added to path
  3. Install virtualenv in python
> git clone https://github.com/mbedmicro/mbed
> pip install virtualenv
> virtualenv venv
>

Develop

  1. Update dependencies and start virtual environment. This should be done everytime you pull new changes
> "venv/Scripts/activate"
> pip install -r requirements.txt
> cd tools
> ... do things ...
> "venv/Scripts/deactivate"