Command-line tutorial for the basic Device Management Client example with an Mbed OS device
This is a basic Device Management Client example (mbed-os-example-pelion)for a Mbed OS device with the following features:
- Support for latest Mbed OS and Device Management Client releases.
- Support for developer mode provisioning.
- Support for firmware update.
There is a more advanced example of the client with support for multiple operating systems in the mbed-cloud-client-example repository. The underlying client library is the same for both. This Mbed OS only example is simpler as it only supports one OS with a limited set of demonstrated features. If you want to develop in Linux and Mbed OS at the same time, use the advanced example application.
Note: If you want to work in production mode, or use more advanced client features, those are demonstrated in the mbed-cloud-client-example.
Supported boards
This table lists the supported boards.
Board | Connectivity | Storage for credentials and FW candidate | Notes |
---|---|---|---|
NXP K64F |
Ethernet | Internal flash | |
NXP K66F |
Ethernet | Internal flash | |
ST NUCLEO_F429ZI |
Ethernet | Internal flash | |
ST NUCLEO_F411RE |
Wi-Fi ESP8266 | SD card | |
Ublox UBLOX_EVK_ODIN_W2 |
Wi-Fi | SD card | |
ST DISCO_L475VG_IOT01A |
Wi-Fi | QSPIF | |
Ublox UBLOX_C030_U201 |
Cellular | SD card | |
Ublox UBLOX_C030_R412M |
Cellular | SD card | |
Embedded Planet EP_AGORA |
Cellular | SPIF |
Prerequisites
To work with the basic Device Management Client example application, you need:
- A supported board with a network connection and an external storage if listed in table above.
- Serial connection to your device with open terminal connection (baud rate 115200, 8N1).
- Arm Mbed CLI installed. See installation instructions.
- Make sure that all the Python components are in par with the
pip
package requirements.txt list from Mbed OS.
- Make sure that all the Python components are in par with the
- An API key (with
Administrators
group privilages) for your Device Management account. - Updated DAPLink software (version 250 or later), if your board uses DAPLink.
Configuring Device Management Client
-
Clone the embedded application's GitHub repository to your local computer and navigate to the new folder:
mbed import mbed-os-example-pelion cd mbed-os-example-pelion
-
Configure Mbed CLI to use your Device Management account and board:
mbed config -G CLOUD_SDK_API_KEY <API_KEY> mbed target <MCU> mbed toolchain GCC_ARM
-
Use Mbed CLI to download a developer certificate and to create an update-related configuration for your device:
mbed device-management init -d arm.com --model-name example-app --force -q
Compiling and flashing Device Management Client
To compile the example application:
mbed compile
Read more detailed instructions on all parameters related to Mbed CLI and device-management
command.
Flashing the binary to the device
To flash the binary to the device:
- Connect the device to your computer over USB. It's listed as a mass storage device.
- Drag and drop
mbed-os-example-pelion.bin
to the device. This flashes the binary to the device. You should see the LED blink rapidly; wait for it to stop.
Connecting and performing a firmware update on your device
Checking the device connection and obtaining the Device ID
- Press the Reset button to restart the device.
- Obtain your device's Device ID either from device console logs or from Device Management Portal.
When the client has successfully connected, the terminal shows:
Client registered
Account ID: <Account ID>
Endpoint Name: <Endpoint name>
Device ID: <Device ID>
To verify the connection with Device Management Portal:
- Log in to Device Management Portal.
- Select Device directory from the menu on the left.
- When your device is listed on the Devices page, it is connected and available.
Your device is now connected and ready for the firmware update. For development devices, the Endpoint name and Device ID are identical.
Interacting with the application through the serial port
- Press Enter through Putty/minicom to simulate a button press.
- Press i to print the endpoint name.
- Press Ctrl-C to deregister.
- Press r to reset the storage and reboot (Note: This generates a new device ID!).
Updating the firmware
To update the firmware on your device:
mbed device-management update device -D <Device ID>
When the update starts, the client tracing log shows:
Update progress = 0%
...
Update progress = 99%
Update progress = 100%
After this, the device reboots automatically and registers to Device Management.