Bluetooth: Central SMP Client
The Central Simple Management Protocol (SMP) Client sample demonstrates how to use the GATT DFU SMP Service Client to connect to an SMP Server and send a simple echo command. The response, which is received as CBOR-encoded data, is decoded and printed.
Overview
After connecting, the sample starts MTU size negotiation, discovers the GATT database of the server, and configures the DFU SMP Client. When configuration is complete, the sample is ready to send SMP commands.
To send an echo command, press Button 1 on the development kit. The string that is sent contains a number that is automatically incremented. This way, you can easily verify if the correct response is received. The response is decoded and displayed using the TinyCBOR library (which is part of Zephyr).
Requirements
The sample supports the following development kits:
Hardware platforms |
PCA |
Board name |
Build target |
---|---|---|---|
PCA10095 |
|
||
PCA10056 |
|
||
PCA10100 |
|
||
PCA10100 |
|
||
PCA10040 |
|
The sample also requires a device running mcumgr with transport protocol over Bluetooth® Low Energy, for example, another development kit running the SMP Server Sample.
User interface
- Button 1:
Send an echo command.
Building and running
This sample can be found under samples/bluetooth/central_smp_client
in the nRF Connect SDK folder structure.
See Building and programming an application for information about how to build and program the application.
Testing
After programming the sample to your development kit, test it by performing the following steps:
Connect the kit to the computer using a USB cable. The kit is assigned a COM port (Windows) or ttyACM device (Linux), which is visible in the Device Manager.
Connect to the kit with a terminal emulator (for example, PuTTY). See How to connect with PuTTY for the required settings.
Reset the kit.
Observe that the text “Starting Bluetooth Central SMP Client example” is printed on the COM listener running on the computer and the device starts scanning for Peripherals with SMP.
Program the SMP Server Sample to another development kit. See the documentation for that sample only in the section “Building the sample application”. When you finish building the SMP Server Sample, you can program it to the kit by calling:
west flash
Observe that the kits connect. When service discovery is completed, the event logs are printed on the Central’s terminal. If you connect to the Server with a terminal emulator, you can observe that it prints “connected”.
Press Button 1 on the Client. Observe messages similar to the following:
Echo test: 1 Echo response part received, size: 28. Total response received - decoding {_"r": "Echo message: 1"}
Disconnect the devices by, for example, pressing the Reset button on the Central. Observe that the kits automatically reconnect and that it is again possible to send data between the two kits.
Dependencies
This sample uses the following nRF Connect SDK libraries:
It uses the following Zephyr libraries:
include/zephyr/types.h
boards/arm/nrf*/board.h
-
include/kernel.h
-
include/bluetooth/bluetooth.h
include/bluetooth/gatt.h
include/bluetooth/hci.h
include/bluetooth/uuid.h
In addition, it uses the following external library that is distributed with Zephyr: