University of Plymouth - Stages 1, 2 and 3 / Mbed OS Task600-ThreadRaces-Solution
Committer:
noutram
Date:
Fri Sep 20 14:12:39 2019 +0000
Revision:
0:65e4972b64a9
2019

Who changed what in which revision?

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