lancaster-university / codal-mbedos

1 stars 5 forks source link

codal-mbedos

This library is a binary build of mbedos, and the necessary include files to enable it's use. This is provided here to reduce code size and complexity in the common case (as mbedos source is rather large). The repo also contains a mapping of the codal APIs onto ARM's mbed os.

Generating Object Files

To extract binary files for a new target, follow these steps:

mbed import mbed-os-example-blinky
cd mbed-os-example-blinky
mbed compile -m nrf52_DK -t GCC_ARM
python create_codal_target.py

FAQs

Do you use the feature of the RTOS (RTX from Keil) integrated in mbed?

We run inside the main thread of the RTOS, but do not use any other RTOS features. We determine where our stack is for the fiber scheduler here

Which version of mbed os are you using?

Because mbedos is such a large project, we find it quicker to produce a pre-compiled version of the library as a binary library formed of object files. We are currently building off of mbedos version 5.7.3 (0d24148513d5971c8141de3d859a0af0a948b47d), which you should be able to find on github (https://github.com/ARMmbed/mbed-os).