2019

Committer:
noutram
Date:
Fri Nov 08 10:23:06 2019 +0000
Revision:
1:d9a7b49c9b6c
Parent:
0:c49a2dd99fc3
Updated to latest release

Who changed what in which revision?

UserRevisionLine numberNew contents of line
noutram 0:c49a2dd99fc3 1 # Getting started with Blinky on mbed OS
noutram 0:c49a2dd99fc3 2
noutram 0:c49a2dd99fc3 3 This guide reviews the steps required to get Blinky working on an mbed OS platform.
noutram 0:c49a2dd99fc3 4
noutram 0:c49a2dd99fc3 5 Please install [mbed CLI](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli).
noutram 0:c49a2dd99fc3 6
noutram 0:c49a2dd99fc3 7 ## Import the example application
noutram 0:c49a2dd99fc3 8
noutram 0:c49a2dd99fc3 9 From the command-line, import the example:
noutram 0:c49a2dd99fc3 10
noutram 0:c49a2dd99fc3 11 ```
noutram 0:c49a2dd99fc3 12 mbed import mbed-os-example-blinky
noutram 0:c49a2dd99fc3 13 cd mbed-os-example-blinky
noutram 0:c49a2dd99fc3 14 ```
noutram 0:c49a2dd99fc3 15
noutram 0:c49a2dd99fc3 16 ### Now compile
noutram 0:c49a2dd99fc3 17
noutram 0:c49a2dd99fc3 18 Invoke `mbed compile`, and specify the name of your platform and your favorite toolchain (`GCC_ARM`, `ARM`, `IAR`). For example, for the ARM Compiler 5:
noutram 0:c49a2dd99fc3 19
noutram 0:c49a2dd99fc3 20 ```
noutram 0:c49a2dd99fc3 21 mbed compile -m K64F -t ARM
noutram 0:c49a2dd99fc3 22 ```
noutram 0:c49a2dd99fc3 23
noutram 0:c49a2dd99fc3 24 Your PC may take a few minutes to compile your code. At the end, you see the following result:
noutram 0:c49a2dd99fc3 25
noutram 0:c49a2dd99fc3 26 ```
noutram 0:c49a2dd99fc3 27 [snip]
noutram 0:c49a2dd99fc3 28 +----------------------------+-------+-------+------+
noutram 0:c49a2dd99fc3 29 | Module | .text | .data | .bss |
noutram 0:c49a2dd99fc3 30 +----------------------------+-------+-------+------+
noutram 0:c49a2dd99fc3 31 | Misc | 13939 | 24 | 1372 |
noutram 0:c49a2dd99fc3 32 | core/hal | 16993 | 96 | 296 |
noutram 0:c49a2dd99fc3 33 | core/rtos | 7384 | 92 | 4204 |
noutram 0:c49a2dd99fc3 34 | features/FEATURE_IPV4 | 80 | 0 | 176 |
noutram 0:c49a2dd99fc3 35 | frameworks/greentea-client | 1830 | 60 | 44 |
noutram 0:c49a2dd99fc3 36 | frameworks/utest | 2392 | 512 | 292 |
noutram 0:c49a2dd99fc3 37 | Subtotals | 42618 | 784 | 6384 |
noutram 0:c49a2dd99fc3 38 +----------------------------+-------+-------+------+
noutram 0:c49a2dd99fc3 39 Allocated Heap: unknown
noutram 0:c49a2dd99fc3 40 Allocated Stack: unknown
noutram 0:c49a2dd99fc3 41 Total Static RAM memory (data + bss): 7168 bytes
noutram 0:c49a2dd99fc3 42 Total RAM memory (data + bss + heap + stack): 7168 bytes
noutram 0:c49a2dd99fc3 43 Total Flash memory (text + data + misc): 43402 bytes
noutram 0:c49a2dd99fc3 44 Image: .\.build\K64F\ARM\mbed-os-example-blinky.bin
noutram 0:c49a2dd99fc3 45 ```
noutram 0:c49a2dd99fc3 46
noutram 0:c49a2dd99fc3 47 ### Program your board
noutram 0:c49a2dd99fc3 48
noutram 0:c49a2dd99fc3 49 1. Connect your mbed device to the computer over USB.
noutram 0:c49a2dd99fc3 50 1. Copy the binary file to the mbed device.
noutram 0:c49a2dd99fc3 51 1. Press the reset button to start the program.
noutram 0:c49a2dd99fc3 52
noutram 0:c49a2dd99fc3 53 The LED on your platform turns on and off.
noutram 0:c49a2dd99fc3 54
noutram 0:c49a2dd99fc3 55 ## Export the project to Keil MDK, and debug your application
noutram 0:c49a2dd99fc3 56
noutram 0:c49a2dd99fc3 57 From the command-line, run the following command:
noutram 0:c49a2dd99fc3 58
noutram 0:c49a2dd99fc3 59 ```
noutram 0:c49a2dd99fc3 60 mbed export -m K64F -i uvision
noutram 0:c49a2dd99fc3 61 ```
noutram 0:c49a2dd99fc3 62
noutram 0:c49a2dd99fc3 63 To debug the application:
noutram 0:c49a2dd99fc3 64
noutram 0:c49a2dd99fc3 65 1. Start uVision.
noutram 0:c49a2dd99fc3 66 1. Import the uVision project generated earlier.
noutram 0:c49a2dd99fc3 67 1. Compile your application, and generate an `.axf` file.
noutram 0:c49a2dd99fc3 68 1. Make sure uVision is configured to debug over CMSIS-DAP (From the Project menu > Options for Target '...' > Debug tab > Use CMSIS-DAP Debugger).
noutram 0:c49a2dd99fc3 69 1. Set breakpoints, and start a debug session.
noutram 0:c49a2dd99fc3 70
noutram 0:c49a2dd99fc3 71 ![Image of uVision](img/uvision.png)
noutram 0:c49a2dd99fc3 72
noutram 0:c49a2dd99fc3 73 ## Troubleshooting
noutram 0:c49a2dd99fc3 74
noutram 0:c49a2dd99fc3 75 1. Make sure `mbed-cli` is working correctly and its version is `>1.0.0`
noutram 0:c49a2dd99fc3 76
noutram 0:c49a2dd99fc3 77 ```
noutram 0:c49a2dd99fc3 78 mbed --version
noutram 0:c49a2dd99fc3 79 ```
noutram 0:c49a2dd99fc3 80
noutram 0:c49a2dd99fc3 81 If not, you can update it:
noutram 0:c49a2dd99fc3 82
noutram 0:c49a2dd99fc3 83 ```
noutram 0:c49a2dd99fc3 84 pip install mbed-cli --upgrade
noutram 0:c49a2dd99fc3 85 ```
noutram 0:c49a2dd99fc3 86
noutram 0:c49a2dd99fc3 87 2. If using Keil MDK, make sure you have a license installed. [MDK-Lite](http://www.keil.com/arm/mdk.asp) has a 32 KB restriction on code size.