Specific Pelion ready example using features of Uhuru RAVEN board including Wi-Fi and SPI flash

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:
Uhuru RAVEN over Wi-Fi and using onboard SPI flash.

/media/uploads/MACRUM/raven.jpg

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

Example functionality

This example showcases the following device functionality:

  • Allow the user to change the state of the board LED from Pelion LWM2M led_state resource and PUT request.

Use this example with Mbed CLI

1. Import the application into your desktop:

mbed import https://os.mbed.com/teams/Uhuru/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.9.x or above.

Set SSID and password in the mbed_app.json.

            "nsapi.default-wifi-ssid"                   : "\"SSID\"",
            "nsapi.default-wifi-password"               : "\"Password\""

4. Compile and program:

mbed compile -t <toolchain> -m UHURU_RAVEN

(supported toolchains : GCC_ARM / ARM / IAR)

5. You can connect on a virtual terminal/COM port to the platform using:

mbed sterm -b 115200

This should give you an output similar to:

[BOOT] INFO: init - verified SFDP Signature and version Successfully
[BOOT] DEBUG: Erase Type(A) 1 - Inst: 0xFFh, Size: 4096
[BOOT] INFO: Erase Type 1 - Inst: 0x20h, Size: 4096
[BOOT] DEBUG: Erase Type(A) 2 - Inst: 0xFFh, Size: 32768
[BOOT] INFO: Erase Type 2 - Inst: 0x52h, Size: 32768
[BOOT] DEBUG: Erase Type(A) 3 - Inst: 0xFFh, Size: 65536
[BOOT] INFO: Erase Type 3 - Inst: 0xD8h, Size: 65536
[BOOT] DEBUG: Erase Type(A) 4 - Inst: 0xFFh, Size: 1
[BOOT] INFO: Erase Type 4 - Inst: 0xFFh, Size: 1
[BOOT] Mbed Bootloader
[BOOT] ARM: 00000000000000000000
[BOOT] OEM: 00000000000000000000
[BOOT] Layout: 0 80091E0
[BOOT] Active firmware integrity check:
[BOOT] SHA256: DC87CF84F7064E58EF0FD011C1768ADFA4803BA1F6758808972680605CBB2C9B
[BOOT] Version: 1558427552
[BOOT] INFO Read - Inst: 0x3h
[BOOT] Slot 0 is empty
[BOOT] Active firmware up-to-date
[BOOT] Application's start address: 0x8010400
[BOOT] Application's jump address: 0x80108F9
[BOOT] Application's stack address: 0x20080000
[BOOT] Forwarding to application...
..¿<.
Starting Simple Pelion Device Management Client example
You can hold the user button during boot to format the storage and change the device identity.
Connecting to the network using the default network interface...
Connected to the network successfully. IP address: 192.168.11.20
Initializing Pelion Device Management Client...
Initialized Pelion Device Management Client. Registering...
Simulating button press every 5 seconds...
Registered to Pelion Device Management. Endpoint Name: 016ad986878400000000000100xxxxxx
Button clicked 1 times
Button clicked 2 times
Button clicked 3 times
Committer:
MACRUM
Date:
Tue May 21 17:19:38 2019 +0900
Revision:
0:16957896f9cd
initial commit

Who changed what in which revision?

UserRevisionLine numberNew contents of line
MACRUM 0:16957896f9cd 1 Permissive Binary License
MACRUM 0:16957896f9cd 2
MACRUM 0:16957896f9cd 3 Version 1.0, September 2015
MACRUM 0:16957896f9cd 4
MACRUM 0:16957896f9cd 5 Redistribution. Redistribution and use in binary form, without
MACRUM 0:16957896f9cd 6 modification, are permitted provided that the following conditions are
MACRUM 0:16957896f9cd 7 met:
MACRUM 0:16957896f9cd 8
MACRUM 0:16957896f9cd 9 1) Redistributions must reproduce the above copyright notice and the
MACRUM 0:16957896f9cd 10 following disclaimer in the documentation and/or other materials
MACRUM 0:16957896f9cd 11 provided with the distribution.
MACRUM 0:16957896f9cd 12
MACRUM 0:16957896f9cd 13 2) Unless to the extent explicitly permitted by law, no reverse
MACRUM 0:16957896f9cd 14 engineering, decompilation, or disassembly of this software is
MACRUM 0:16957896f9cd 15 permitted.
MACRUM 0:16957896f9cd 16
MACRUM 0:16957896f9cd 17 3) Redistribution as part of a software development kit must include the
MACRUM 0:16957896f9cd 18 accompanying file named "DEPENDENCIES" and any dependencies listed in
MACRUM 0:16957896f9cd 19 that file.
MACRUM 0:16957896f9cd 20
MACRUM 0:16957896f9cd 21 4) Neither the name of the copyright holder nor the names of its
MACRUM 0:16957896f9cd 22 contributors may be used to endorse or promote products derived from
MACRUM 0:16957896f9cd 23 this software without specific prior written permission.
MACRUM 0:16957896f9cd 24
MACRUM 0:16957896f9cd 25 Limited patent license. The copyright holders (and contributors) grant a
MACRUM 0:16957896f9cd 26 worldwide, non-exclusive, no-charge, royalty-free patent license to
MACRUM 0:16957896f9cd 27 make, have made, use, offer to sell, sell, import, and otherwise
MACRUM 0:16957896f9cd 28 transfer this software, where such license applies only to those patent
MACRUM 0:16957896f9cd 29 claims licensable by the copyright holders (and contributors) that are
MACRUM 0:16957896f9cd 30 necessarily infringed by this software. This patent license shall not
MACRUM 0:16957896f9cd 31 apply to any combinations that include this software. No hardware is
MACRUM 0:16957896f9cd 32 licensed hereunder.
MACRUM 0:16957896f9cd 33
MACRUM 0:16957896f9cd 34 If you institute patent litigation against any entity (including a
MACRUM 0:16957896f9cd 35 cross-claim or counterclaim in a lawsuit) alleging that the software
MACRUM 0:16957896f9cd 36 itself infringes your patent(s), then your rights granted under this
MACRUM 0:16957896f9cd 37 license shall terminate as of the date such litigation is filed.
MACRUM 0:16957896f9cd 38
MACRUM 0:16957896f9cd 39 DISCLAIMER. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
MACRUM 0:16957896f9cd 40 CONTRIBUTORS "AS IS." ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT
MACRUM 0:16957896f9cd 41 NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
MACRUM 0:16957896f9cd 42 FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
MACRUM 0:16957896f9cd 43 HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
MACRUM 0:16957896f9cd 44 SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
MACRUM 0:16957896f9cd 45 TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
MACRUM 0:16957896f9cd 46 PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
MACRUM 0:16957896f9cd 47 LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
MACRUM 0:16957896f9cd 48 NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
MACRUM 0:16957896f9cd 49 SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.