Init Project for HTTP

Committer:
AustinKim
Date:
Tue Sep 17 23:50:37 2019 +0000
Revision:
1:b195d2a6ad11
Parent:
0:37121f302ff1
Init project for HTTP

Who changed what in which revision?

UserRevisionLine numberNew contents of line
AustinKim 0:37121f302ff1 1 # Getting started example for Mbed OS
AustinKim 0:37121f302ff1 2
AustinKim 0:37121f302ff1 3 This guide reviews the steps required to get Blinky with the addition of dynamic OS statistics working on an Mbed OS platform. (Note: To see a rendered example you can import into the Arm Online Compiler, please see our [quick start](https://os.mbed.com/docs/mbed-os/latest/quick-start/online-with-the-online-compiler.html#importing-the-code).)
AustinKim 0:37121f302ff1 4
AustinKim 0:37121f302ff1 5 Please install [Mbed CLI](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli).
AustinKim 0:37121f302ff1 6
AustinKim 0:37121f302ff1 7 ## Import the example application
AustinKim 0:37121f302ff1 8
AustinKim 0:37121f302ff1 9 From the command-line, import the example:
AustinKim 0:37121f302ff1 10
AustinKim 0:37121f302ff1 11 ```
AustinKim 0:37121f302ff1 12 mbed import mbed-os-example-blinky
AustinKim 0:37121f302ff1 13 cd mbed-os-example-blinky
AustinKim 0:37121f302ff1 14 ```
AustinKim 0:37121f302ff1 15
AustinKim 0:37121f302ff1 16 ### Now compile
AustinKim 0:37121f302ff1 17
AustinKim 0:37121f302ff1 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:
AustinKim 0:37121f302ff1 19
AustinKim 0:37121f302ff1 20 ```
AustinKim 0:37121f302ff1 21 mbed compile -m K64F -t ARM
AustinKim 0:37121f302ff1 22 ```
AustinKim 0:37121f302ff1 23
AustinKim 0:37121f302ff1 24 Your PC may take a few minutes to compile your code. At the end, you see the following result:
AustinKim 0:37121f302ff1 25
AustinKim 0:37121f302ff1 26 ```
AustinKim 0:37121f302ff1 27 [snip]
AustinKim 0:37121f302ff1 28
AustinKim 0:37121f302ff1 29 Image: ./BUILD/K64F/GCC_ARM/mbed-os-example-blinky.bin
AustinKim 0:37121f302ff1 30 ```
AustinKim 0:37121f302ff1 31
AustinKim 0:37121f302ff1 32 ### Program your board
AustinKim 0:37121f302ff1 33
AustinKim 0:37121f302ff1 34 1. Connect your Mbed device to the computer over USB.
AustinKim 0:37121f302ff1 35 1. Copy the binary file to the Mbed device.
AustinKim 0:37121f302ff1 36 1. Press the reset button to start the program.
AustinKim 0:37121f302ff1 37
AustinKim 0:37121f302ff1 38 The LED on your platform turns on and off. The main thread will additionally take a snapshot of the device's runtime statistics and display it over serial to your PC. The snapshot includes:
AustinKim 0:37121f302ff1 39
AustinKim 0:37121f302ff1 40 * System Information:
AustinKim 0:37121f302ff1 41 * Mbed OS Version: Will currently default to 999999
AustinKim 0:37121f302ff1 42 * Compiler ID
AustinKim 0:37121f302ff1 43 * ARM = 1
AustinKim 0:37121f302ff1 44 * GCC_ARM = 2
AustinKim 0:37121f302ff1 45 * IAR = 3
AustinKim 0:37121f302ff1 46 * [CPUID Register Information](#cpuid-register-information)
AustinKim 0:37121f302ff1 47 * [Compiler Version](#compiler-version)
AustinKim 0:37121f302ff1 48 * CPU Statistics
AustinKim 0:37121f302ff1 49 * Percentage of runtime that the device has spent awake versus in sleep
AustinKim 0:37121f302ff1 50 * Heap Statistics
AustinKim 0:37121f302ff1 51 * Current heap size
AustinKim 0:37121f302ff1 52 * Max heap size which refers to the largest the heap has grown to
AustinKim 0:37121f302ff1 53 * Thread Statistics
AustinKim 0:37121f302ff1 54 * Provides information on all running threads in the OS including
AustinKim 0:37121f302ff1 55 * Thread ID
AustinKim 0:37121f302ff1 56 * Thread Name
AustinKim 0:37121f302ff1 57 * Thread State
AustinKim 0:37121f302ff1 58 * Thread Priority
AustinKim 0:37121f302ff1 59 * Thread Stack Size
AustinKim 0:37121f302ff1 60 * Thread Stack Space
AustinKim 0:37121f302ff1 61
AustinKim 0:37121f302ff1 62 #### Compiler Version
AustinKim 0:37121f302ff1 63
AustinKim 0:37121f302ff1 64 | Compiler | Version Layout |
AustinKim 0:37121f302ff1 65 | -------- | -------------- |
AustinKim 0:37121f302ff1 66 | ARM | PVVbbbb (P = Major; VV = Minor; bbbb = build number) |
AustinKim 0:37121f302ff1 67 | GCC | VVRRPP (VV = Version; RR = Revision; PP = Patch) |
AustinKim 0:37121f302ff1 68 | IAR | VRRRPPP (V = Version; RRR = Revision; PPP = Patch) |
AustinKim 0:37121f302ff1 69
AustinKim 0:37121f302ff1 70 #### CPUID Register Information
AustinKim 0:37121f302ff1 71
AustinKim 0:37121f302ff1 72 | Bit Field | Field Description | Values |
AustinKim 0:37121f302ff1 73 | --------- | ----------------- | ------ |
AustinKim 0:37121f302ff1 74 |[31:24] | Implementer | 0x41 = ARM |
AustinKim 0:37121f302ff1 75 |[23:20] | Variant | Major revision 0x0 = Revision 0 |
AustinKim 0:37121f302ff1 76 |[19:16] | Architecture | 0xC = Baseline Architecture |
AustinKim 0:37121f302ff1 77 | | | 0xF = Constant (Mainline Architecture) |
AustinKim 0:37121f302ff1 78 |[15:4] | Part Number | 0xC20 = Cortex-M0 |
AustinKim 0:37121f302ff1 79 | | | 0xC60 = Cortex-M0+ |
AustinKim 0:37121f302ff1 80 | | | 0xC23 = Cortex-M3 |
AustinKim 0:37121f302ff1 81 | | | 0xC24 = Cortex-M4 |
AustinKim 0:37121f302ff1 82 | | | 0xC27 = Cortex-M7 |
AustinKim 0:37121f302ff1 83 | | | 0xD20 = Cortex-M23 |
AustinKim 0:37121f302ff1 84 | | | 0xD21 = Cortex-M33 |
AustinKim 0:37121f302ff1 85 |[3:0] | Revision | Minor revision: 0x1 = Patch 1 |
AustinKim 0:37121f302ff1 86
AustinKim 0:37121f302ff1 87
AustinKim 0:37121f302ff1 88
AustinKim 0:37121f302ff1 89 You can view individual examples and additional API information of the statistics collection tools at the bottom of the page in the [related links section](#related-links).
AustinKim 0:37121f302ff1 90
AustinKim 0:37121f302ff1 91
AustinKim 0:37121f302ff1 92 ### Output
AustinKim 0:37121f302ff1 93
AustinKim 0:37121f302ff1 94 To view the serial output you can use any terminal client of your choosing such as [PuTTY](http://www.putty.org/) or [CoolTerm](http://freeware.the-meiers.org/). Unless otherwise specified, printf defaults to a baud rate of 9600 on Mbed OS.
AustinKim 0:37121f302ff1 95
AustinKim 0:37121f302ff1 96 You can find more information on the Mbed OS configuration tools and serial communication in Mbed OS in the related [related links section](#related-links).
AustinKim 0:37121f302ff1 97
AustinKim 0:37121f302ff1 98 The output should contain the following block transmitted at the blinking LED frequency (actual values may vary depending on your target, build profile, and toolchain):
AustinKim 0:37121f302ff1 99
AustinKim 0:37121f302ff1 100 ```
AustinKim 0:37121f302ff1 101 =============================== SYSTEM INFO ================================
AustinKim 0:37121f302ff1 102 Mbed OS Version: 999999
AustinKim 0:37121f302ff1 103 CPU ID: 0x410fc241
AustinKim 0:37121f302ff1 104 Compiler ID: 2
AustinKim 0:37121f302ff1 105 Compiler Version: 60300
AustinKim 0:37121f302ff1 106 RAM0: Start 0x20000000 Size: 0x30000
AustinKim 0:37121f302ff1 107 RAM1: Start 0x1fff0000 Size: 0x10000
AustinKim 0:37121f302ff1 108 ROM0: Start 0x0 Size: 0x100000
AustinKim 0:37121f302ff1 109 ================= CPU STATS =================
AustinKim 0:37121f302ff1 110 Idle: 98% Usage: 2%
AustinKim 0:37121f302ff1 111 ================ HEAP STATS =================
AustinKim 0:37121f302ff1 112 Current heap: 1096
AustinKim 0:37121f302ff1 113 Max heap size: 1096
AustinKim 0:37121f302ff1 114 ================ THREAD STATS ===============
AustinKim 0:37121f302ff1 115 ID: 0x20001eac
AustinKim 0:37121f302ff1 116 Name: main_thread
AustinKim 0:37121f302ff1 117 State: 2
AustinKim 0:37121f302ff1 118 Priority: 24
AustinKim 0:37121f302ff1 119 Stack Size: 4096
AustinKim 0:37121f302ff1 120 Stack Space: 3296
AustinKim 0:37121f302ff1 121
AustinKim 0:37121f302ff1 122 ID: 0x20000f5c
AustinKim 0:37121f302ff1 123 Name: idle_thread
AustinKim 0:37121f302ff1 124 State: 1
AustinKim 0:37121f302ff1 125 Priority: 1
AustinKim 0:37121f302ff1 126 Stack Size: 512
AustinKim 0:37121f302ff1 127 Stack Space: 352
AustinKim 0:37121f302ff1 128
AustinKim 0:37121f302ff1 129 ID: 0x20000f18
AustinKim 0:37121f302ff1 130 Name: timer_thread
AustinKim 0:37121f302ff1 131 State: 3
AustinKim 0:37121f302ff1 132 Priority: 40
AustinKim 0:37121f302ff1 133 Stack Size: 768
AustinKim 0:37121f302ff1 134 Stack Space: 664
AustinKim 0:37121f302ff1 135
AustinKim 0:37121f302ff1 136 ```
AustinKim 0:37121f302ff1 137
AustinKim 0:37121f302ff1 138 ## Troubleshooting
AustinKim 0:37121f302ff1 139
AustinKim 0:37121f302ff1 140 If you have problems, you can review the [documentation](https://os.mbed.com/docs/latest/tutorials/debugging.html) for suggestions on what could be wrong and how to fix it.
AustinKim 0:37121f302ff1 141
AustinKim 0:37121f302ff1 142 ## Related Links
AustinKim 0:37121f302ff1 143
AustinKim 0:37121f302ff1 144 * [Mbed OS Stats API](https://os.mbed.com/docs/latest/apis/mbed-statistics.html)
AustinKim 0:37121f302ff1 145 * [Mbed OS Configuration](https://os.mbed.com/docs/latest/reference/configuration.html)
AustinKim 0:37121f302ff1 146 * [Mbed OS Serial Communication](https://os.mbed.com/docs/latest/tutorials/serial-communication.html)
AustinKim 0:37121f302ff1 147
AustinKim 0:37121f302ff1 148 ### License and contributions
AustinKim 0:37121f302ff1 149
AustinKim 0:37121f302ff1 150 The software is provided under Apache-2.0 license. Contributions to this project are accepted under the same license. Please see contributing.md for more info.
AustinKim 0:37121f302ff1 151
AustinKim 0:37121f302ff1 152 This project contains code from other projects. The original license text is included in those source files. They must comply with our license guide.