Go to file
Kevin Bracey eb80c25398 Add ability to request a shared event queue
To allow components with a simple need to schedule a few events to not
have to create their own threads, with all the associated memory
overhead, add 2 central calls to get shared normal and an
interrupt-deferral event queues, each dispatched on their own shared
threads.

For non-RTOS systems, just the normal event queue is provided, and the
application would have to dispatch this itself. This
application-dispatch is also available via a config option, to
potentially save memory by reusing the main thread.

Possible future improvement: the ability for separate components to
request a minimum stack size, and have the JSON combine these requests.
(Analogous tooling has already been mooted for mbed TLS config options
like key size).
2017-09-01 13:26:08 +03:00
.github Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
TESTS Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
cmsis Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
drivers Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
events Add ability to request a shared event queue 2017-09-01 13:26:08 +03:00
features Merge pull request #4960 from artokin/master 2017-08-29 13:46:47 -05:00
hal Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
platform Merge pull request #4954 from c1728p9/fix_isr_clear 2017-08-29 13:46:25 -05:00
rtos Merge pull request #4941 from mprse/fix_mem_pool_header_file 2017-08-24 10:18:18 -05:00
targets Merge pull request #4951 from JanneKiiskila/ublox_odin_buttons 2017-08-29 13:46:10 -05:00
tools Merge pull request #4950 from OpenNuvoton/nuvoton_usb 2017-08-29 13:45:55 -05:00
.gitattributes Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
.gitignore Squashed 'features/FEATURE_COMMON_PAL/mbed-trace/' changes from af5f59c..b731d95 2017-08-23 15:48:29 +03:00
.pylintrc Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
.travis.yml Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
CONTRIBUTING.md Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
DOXYGEN_FRONTPAGE.md Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
Jenkinsfile Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
LICENSE Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
README.md Squashed 'features/FEATURE_COMMON_PAL/mbed-trace/' changes from af5f59c..b731d95 2017-08-23 15:48:29 +03:00
doxyfile_options Turn on doxygen for DEVICE_* features 2017-08-11 15:47:44 -05:00
doxygen_options.json Turn on doxygen for DEVICE_* features 2017-08-11 15:47:44 -05:00
mbed.h Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00
requirements.txt Squashed 'features/nanostack/FEATURE_NANOSTACK/coap-service/' changes from e125164..d65b6b0 2017-08-23 15:09:48 +03:00

README.md

ARM mbed OS

mbed OS is an open-source embedded operating system designed for the "things" in the Internet of Things (IoT). mbed OS includes the features you need to develop a connected product using an ARM Cortex-M microcontroller.

mbed OS provides a platform that includes:

  • Security foundations.
  • Cloud management services.
  • Drivers for sensors, I/O devices and connectivity.

mbed OS is modular, configurable software that you can customize it to your device and to reduce memory requirements by excluding unused software.

Release Notes

The Release Notes detail the current release and previous versions.

Continuous Integration Status

We run continuous integration on all of our branches and pull requests to verify the stability of mbed OS. The following are the Travis CI indicators for mbed OS.

  • Master branch Master Branch CI Badge
  • Latest release Latest Tag CI Badge

Getting Started for Developers

You need mbed CLI to build mbed OS. For more details, read the mbed OS Handbook.

Getting Started for Contributors

We have a Contributing and Publishing Guide in the mbed OS Handbook.