Generic Pelion Device Management example for various U-blox-based boards.

Dependencies:   ublox-at-cellular-interface ublox-cellular-base

DEPRECATED

This example application is not maintained and not recommended. It uses an old version of Mbed OS, Pelion DM, and Arm toolchain. It doesn't work with Mbed Studio.

Please use: https://os.mbed.com/teams/mbed-os-examples/code/mbed-os-example-pelion/

This example is known to work great on the following platforms:

For Odin-W2 please go to Repository link

Follow the Quick-Start instructions: https://cloud.mbed.com/quick-start

UBLOX_C030_U201

UBLOX_C030_R412M

Example functionality

This example showcases the following device functionality:

  • On user button click, increment Pelion LWM2M button resource.
  • Allow the user to change the state of the board LED from Pelion LWM2M led_state resource and PUT request.
  • (currently disabled) Read ADC temperature and ADC vref, and report them as Pelion LWM2M resources.

Use this example with Mbed CLI

1. Import the application into your desktop:

mbed import https://os.mbed.com/teams/ublox/code/pelion-example-common

cd pelion-example-common

2. Install the CLOUD_SDK_API_KEY

mbed config -G CLOUD_SDK_API_KEY <PELION_DM_API_KEY>

For instructions on how to generate your API key, please see the documentation.

3. Initialize firmware credentials (done once per repository). You can use the following command:

mbed dm init -d "<your company name in Pelion DM>" --model-name "<product model identifier>" -q --force

If above command do not work for your Mbed CLI, please consider upgrading Mbed CLI to version 1.8.x or above.

4. Compile and program:

mbed compile -t <toolchain> -m <TARGET_BOARD>

(supported toolchains : GCC_ARM / ARM / IAR)

Committer:
screamer
Date:
Mon Dec 10 21:58:43 2018 +0000
Revision:
0:a076a1bbe630
Child:
6:2fb5057c0e42
Initial revision

Who changed what in which revision?

UserRevisionLine numberNew contents of line
screamer 0:a076a1bbe630 1 {
screamer 0:a076a1bbe630 2 "macros": [
screamer 0:a076a1bbe630 3 "MBEDTLS_USER_CONFIG_FILE=\"bootloader_mbedtls_user_config.h\"",
screamer 0:a076a1bbe630 4 "SHOW_PROGRESS_BAR=0",
screamer 0:a076a1bbe630 5 "MAX_COPY_RETRIES=1",
screamer 0:a076a1bbe630 6 "MAX_BOOT_RETRIES=3",
screamer 0:a076a1bbe630 7 "ARM_BOOTLOADER_USE_NVSTORE_ROT=1",
screamer 0:a076a1bbe630 8 "ARM_UC_USE_PAL_CRYPTO=0",
screamer 0:a076a1bbe630 9 "ARM_UC_USE_PAL_BLOCKDEVICE=1",
screamer 0:a076a1bbe630 10 "ARM_UC_PAAL_TRACE_ENABLE=0",
screamer 0:a076a1bbe630 11 "ARM_UC_PROFILE_MBED_CLOUD_CLIENT=1",
screamer 0:a076a1bbe630 12 "ARM_UC_FEATURE_CRYPTO_PAL=0",
screamer 0:a076a1bbe630 13 "ARM_UC_FEATURE_CRYPTO_MBEDTLS=1",
screamer 0:a076a1bbe630 14 "MBED_CLOUD_CLIENT_UPDATE_STORAGE=ARM_UCP_FLASHIAP_BLOCKDEVICE",
screamer 0:a076a1bbe630 15 "DEFAULT_MAX_APPLICATION_SIZE=(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - MBED_CONF_APP_APPLICATION_START_ADDRESS)",
screamer 0:a076a1bbe630 16 "DISABLE_ERROR_DESCRIPTION=1",
screamer 0:a076a1bbe630 17 "Mutex=PlatformMutex"
screamer 0:a076a1bbe630 18 ],
screamer 0:a076a1bbe630 19 "config": {
screamer 0:a076a1bbe630 20 "application-start-address": {
screamer 0:a076a1bbe630 21 "help": "Address to the beginning of the active application firmware in flash",
screamer 0:a076a1bbe630 22 "value": null
screamer 0:a076a1bbe630 23 },
screamer 0:a076a1bbe630 24 "application-jump-address": {
screamer 0:a076a1bbe630 25 "help": "Jump address for running the active application firmware",
screamer 0:a076a1bbe630 26 "value": null
screamer 0:a076a1bbe630 27 },
screamer 0:a076a1bbe630 28 "max-application-size": {
screamer 0:a076a1bbe630 29 "help": "Maximum size of the active application",
screamer 0:a076a1bbe630 30 "value": null
screamer 0:a076a1bbe630 31 },
screamer 0:a076a1bbe630 32 "flash-start-address": {
screamer 0:a076a1bbe630 33 "help": "Start address of internal flash. Only used in this config to help the definition of other macros.",
screamer 0:a076a1bbe630 34 "value": null
screamer 0:a076a1bbe630 35 },
screamer 0:a076a1bbe630 36 "flash-size": {
screamer 0:a076a1bbe630 37 "help": "Total size of internal flash. Only used in this config to help the definition of other macros.",
screamer 0:a076a1bbe630 38 "value": null
screamer 0:a076a1bbe630 39 }
screamer 0:a076a1bbe630 40 },
screamer 0:a076a1bbe630 41 "target_overrides": {
screamer 0:a076a1bbe630 42 "*": {
screamer 0:a076a1bbe630 43 "target.features_remove" : ["LWIP"],
screamer 0:a076a1bbe630 44 "target.features_add" : ["COMMON_PAL"],
screamer 0:a076a1bbe630 45 "platform.stdio-baud-rate" : 115200,
screamer 0:a076a1bbe630 46 "platform.stdio-flush-at-exit" : false,
screamer 0:a076a1bbe630 47 "update-client.storage-address" : "(1024*1024*64)",
screamer 0:a076a1bbe630 48 "update-client.storage-size" : "(1024*1024*2)",
screamer 0:a076a1bbe630 49 "update-client.storage-locations" : 1,
screamer 0:a076a1bbe630 50 "update-client.firmware-header-version": "2"
screamer 0:a076a1bbe630 51 },
screamer 0:a076a1bbe630 52 "UBLOX_EVK_ODIN_W2": {
screamer 0:a076a1bbe630 53 "target.device_has_remove" : ["EMAC"],
screamer 0:a076a1bbe630 54 "flash-start-address" : "0x08000000",
screamer 0:a076a1bbe630 55 "flash-size" : "(2048*1024)",
screamer 0:a076a1bbe630 56 "nvstore.area_1_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 2*(128*1024))",
screamer 0:a076a1bbe630 57 "nvstore.area_1_size" : "(128*1024)",
screamer 0:a076a1bbe630 58 "nvstore.area_2_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 1*(128*1024))",
screamer 0:a076a1bbe630 59 "nvstore.area_2_size" : "(128*1024)",
screamer 0:a076a1bbe630 60 "update-client.application-details": "(MBED_CONF_APP_FLASH_START_ADDRESS + 64*1024)",
screamer 0:a076a1bbe630 61 "application-start-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + 65*1024)",
screamer 0:a076a1bbe630 62 "max-application-size" : "DEFAULT_MAX_APPLICATION_SIZE"
screamer 0:a076a1bbe630 63 },
screamer 0:a076a1bbe630 64 "UBLOX_C030_U201": {
screamer 0:a076a1bbe630 65 "flash-start-address" : "0x08000000",
screamer 0:a076a1bbe630 66 "flash-size" : "(1024*1024)",
screamer 0:a076a1bbe630 67 "nvstore.area_1_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 2*(128*1024))",
screamer 0:a076a1bbe630 68 "nvstore.area_1_size" : "(128*1024)",
screamer 0:a076a1bbe630 69 "nvstore.area_2_address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + MBED_CONF_APP_FLASH_SIZE - 1*(128*1024))",
screamer 0:a076a1bbe630 70 "nvstore.area_2_size" : "(128*1024)",
screamer 0:a076a1bbe630 71 "update-client.application-details": "(MBED_CONF_APP_FLASH_START_ADDRESS + 64*1024)",
screamer 0:a076a1bbe630 72 "application-start-address" : "(MBED_CONF_APP_FLASH_START_ADDRESS + 65*1024)",
screamer 0:a076a1bbe630 73 "max-application-size" : "DEFAULT_MAX_APPLICATION_SIZE"
screamer 0:a076a1bbe630 74 }
screamer 0:a076a1bbe630 75 }
screamer 0:a076a1bbe630 76 }