This repo contains a collection of BLE example applications based on mbed OS and built with mbed-cli. Each example subdirectory contains a separate mbed-cli module meant for building an executable.
Please browse to subdirectories for specific documentation.
To build these examples, you need to have a computer with software installed as described here.
In order to use BLE in mbed OS you need one of the following hardware combinations:
- A Nordic nRF52-based board such as nrf52DK
- A supported target, such as the NUCLEO-F401RE, with a BLE shield or an external BLE peripheral, such as an ST shield.
- A DISCO_L475VG_IOT01A (ref B-L475E-IOT01A) board.
- A DISCO_L562QE (ref STM32L562E-DK) board.
- A NUCLEO_WB55RG board.
- An Embedded Planet Agora board
This target is currently not supported as the examples use Cordio link layer which doesn't have an implementation for it yet:
- A Nordic nRF51-based board such as nrf51dk or mkit. You may still use the deprecated examples for this target. The deprecated examples are located in the "deprecated" folder.
The BLE documentation describes the BLE APIs on mbed OS.
The following targets have been tested and work with these examples:
-
Nordic:
- NRF52_DK
- NRF52840_DK
-
Boards with an ST shield plugged in:
- K64F
- NUCLEO_F401RE
-
ST boards with embedded BlueNrg module:
- DISCO_L475VG_IOT01A (ref B-L475E-IOT01A)
- DISCO_L562QE (ref STM32L562E-DK)
-
Board with wireless STM32WB microcontrollers:
- NUCLEO_WB55RG
-
Embedded Planet:
- EP_AGORA
Important: if an ST shield is used with the K64F board, an hardware is patch required. Check out https://developer.mbed.org/teams/ST/code/X_NUCLEO_IDB0XA1/ for more information.
The following board is currently not supported by non-deprecated examples as it doesn't yet support the Cordio stack: * NRF51_DK
It is possible to use the ST Nucleo shield on boards not directly supported by these examples as long as the board has an Arduino UNO R3 connector.
To makes the board compatible with the ST shield three things are required:
- Add the BLE feature to your target.
- Add the BLE implementation for the ST shield to the list of modules which have to be compiled.
- Indicate to the BLE implementation that your board use 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.
In this object two fields are required:
"target.components_add": ["BlueNRG_MS"]
Add the BlueNRG_MS component to the target."target.features_add": ["BLE"]
Add the BLE feature to the target."target.extra_labels_add": ["CORDIO"]
: Add the BLE implementation of the ST shield to the list of the application modules.
As an example, this is the JSON bit which has to be added in the target_overrides
section of mbed_app.json
for a NUCLEO_F411RE
board.
"NUCLEO_F411RE": {
"target.components_add": ["BlueNRG_MS"],
"target.features_add": ["BLE"],
"target.extra_labels_add": ["CORDIO"]
},
Note: You can get more information about the configuration system in the documentation
Important: It is required to apply an hardware patch to the ST shield if it is used on a board with an Arduino connector. Check out https://developer.mbed.org/teams/ST/code/X_NUCLEO_IDB0XA1/ for more information.
To build an example:
-
Clone the repository containing the collection of examples:
$ git clone https://github.com/ARMmbed/mbed-os-example-ble.git
Tip: If you don't have git installed, you can download a zip file of the repository.
-
Using a command-line tool, navigate to any of the example directories, like BLE_Button:
$ cd mbed-os-example-ble $ cd BLE_Button
-
Update the source tree:
mbed deploy
-
Run the build:
mbed compile -t <ARM | GCC_ARM> -m <YOUR_TARGET>
To run the application on your board:
-
Connect your mbed board to your computer over USB. It appears as removable storage.
-
When you run the
mbed compile
command above, mbed cli creates a .bin or a .hex file (depending on your target) inBUILD/<target-name>/<toolchain>
under the example's directory. Drag and drop the file to the removable storage.
- [NUCLEO_F411RE]: Some BLE examples doesn't work with the X-NUCLEO BLE shield. See #40
- [NRF5] Impossible to debug or flash the examples with IAR: See #39
- [NUCLEO_WB55RG]: some examples are not working with default application described in examples readme. Better use LightBlue for iPhone or try out ST BLE Profile.
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.
This project contains code from other projects. The original license text is included in those source files. They must comply with our license guide