This repo contains a collection of BLE example applications based on Mbed OS. Each example subdirectory contains a separate Mbed OS project, along with a description of the example and additional instructions for running it.
This project is built using the Mbed CE CMake-based build system, and can be developed on the command line or by using VS Code or CLion.
The BLE documentation describes the BLE APIs on Mbed OS.
In order to use BLE in Mbed OS you need one of the following hardware combinations:
- A supported target, such as the NUCLEO-F401RE, with a BLE shield or an external BLE peripheral, such as an X-NUCLEO-BNRG2A1 or an X-NUCLEO-IDB05A1 ST BLE expansion board.
- A DISCO_L475VG_IOT01A (ref B-L475E-IOT01A) board.
- A DISCO_L562QE (ref STM32L562E-DK) board.
- A NUCLEO_WB55RG board.
- A Nordic nRF52-based board such as nRF52DK or ARDUINO_NANO33BLE.
- An Embedded Planet Agora board.
The BLE documentation describes the BLE APIs on mbed OS.
The following targets have been tested and work with these examples:
-
Targets with an ST BlueNRG 2 expansion board plugged in:
- NUCLEO_F401RE
- NUCLEO_L476RG
- NUCLEO_F446RE
- K64F
-
ST boards with embedded SPBTLE-RF module (BlueNRG-MS):
- DISCO_L475VG_IOT01A (ref B-L475E-IOT01A)
- DISCO_L562QE (ref STM32L562E-DK)
-
Board with wireless STM32WB microcontrollers:
- NUCLEO_WB55RG
-
Nordic:
- NRF52_DK
- NRF52840_DK (and by extension, ARDUINO_NANO33BLE)
-
Embedded Planet:
- EP_AGORA
Important: If an ST BLE expansion is used with the K64F board, a hardware patch is required. Check out X-NUCLEO-BNRG2A1 or X-NUCLEO-IDB05A1 for more information.
The following board is currently not supported as it doesn't yet support the Cordio stack: * NRF51_DK
It is possible to use the ST BLE expansion on boards not directly supported by these examples as long as the board has an Arduino UNO R3 connector.
To make the board compatible with the ST BLE expansion three things are required:
- Add the BLE feature to your target.
- Add the BLE implementation for the ST BLE expansion to the list of modules which have to be compiled.
- Indicate to the BLE implementation that your board uses an Arduino connector.
All these operations can be done in the file mbed_app.json
present in every example.
In the section target_overrides
, add a new object named after your target with the following two lines:
"target.features_add": ["BLE"]
Add the BLE feature to the target."target.extra_labels_add": ["CORDIO"]
: Add the BLE implementation of the ST BLE expansion to the list of the application modules.
Below is an example of the JSON to be added in the target_overrides
section of mbed_app.json
, with the NUCLEO_F401RE
board.
"NUCLEO_F401RE": {
"target.components_add": ["BlueNRG_2"],
"target.features_add": ["BLE"],
"target.extra_labels_add": ["CORDIO"]
},
Note: Further information about the configuration system is available in the documentation.
Important: It is required to apply an hardware patch to the ST BLE expansion if it is used on a board with an Arduino connector. Check out X-NUCLEO-BNRG2A1 or X-NUCLEO-IDB05A1 for more information.
- Clone this repo to your machine. Don't forget to use
--recursive
to clone the submodules:git clone --recursive https://github.com/mbed-ce/mbed-os-example-ble.git
- Set up the GNU ARM toolchain (and other programs) on your machine using the toolchain setup guide.
- Set up the CMake project for editing. We have three ways to do this:
- On the command line
- Using the CLion IDE
- Using the VS Code IDE
- Connect a USB cable between the USB port on the board and the host computer.
- Build and flash one of the examples using its flash target. e.g. to flash the BLE_Advertising example, you would build
flash-BLE_Advertising
with ninja or with your IDE.
When example application is running, information about activity is printed over the serial connection. The default serial baudrate has been set to 115200 for these examples.
If not using the --sterm
and --baudrate
options when flashing, have a client
open and connected to the board. You may use:
-
Mbed CLI 2
$ mbed-tools sterm -b 115200
-
Mbed CLI 1
$ mbed sterm -b 115200
-
Tera Term for Windows
-
screen or minicom for Linux
screen /dev/serial/<your board> 115200
To observe and/or interact with example applications please use any BLE scanner on a smartphone. If you don't have a scanner on your phone, please install:
-
nRF Connect for Mobile for Android and iOS.
-
ST BLE Profile for Android.
MBED BLE can support bare metal profile: https://os.mbed.com/docs/mbed-os/v6.10/bare-metal/using-the-bare-metal-profile.html
Here is an example with NUCLEO_WB55RG, update your local mbed_app.json:
{
"requires": ["bare-metal", "events", "cordio-stm32wb"],
You will also need to change the CMakeLists to link to the mbed-baremetal
library instead of mbed-os
.
Here are few tips to reduce further application size (this could be in addition of baremetal)
Update in mbed_app.json:
{
"target_overrides": {
"*": {
"target.c_lib": "small",
"target.printf_lib": "minimal-printf",
"platform.minimal-printf-enable-floating-point": false,
"platform.stdio-minimal-console-only": true,
...
If you encounter problems with running the example, first try to update to the development
branch of the example and
see if the problem persists. Make sure to run mbed update
after you checkout the development
branch to update the
libraries to the versions in that branch.
If the problem persists, try turning on traces in the example. This is done by changing the config in mbed_app.json
:
"mbed-trace.enable": true,
"mbed-trace.max-level": "TRACE_LEVEL_DEBUG",
"cordio.trace-hci-packets": true,
"cordio.trace-cordio-wsf-traces": true,
"ble.trace-human-readable-enums": true
Compile with --profile debug
and run with the serial connected to your PC.
This will enable all the traces in BLE. If the number of traces is too big for the serial to handle or the image
doesn't fit try turning off all except the first one (mbed-trace.enable
) and/or lowering the max-level
to
"TRACE_LEVEL_WARNING"
.
Save the output of the serial to a file. Please open an issue in this repo, describe the problem and attach the file containing the trace output.
The software is provided under Apache-2.0 license. Contributions to this project are accepted under the same license. Please see CONTRIBUTING.md for more info.
master
branch is for releases only. Please target the development
branch for all your PRs.