GPS Tracker with a TFT display, GPLV3

Dependencies:   MAX17055 MAX32620FTHR MAX77650 SerialGPS

Committer:
DimiterK
Date:
Sat Aug 18 22:34:58 2018 +0000
Revision:
0:48d0ba737b93
GPS tracker , Hackster Contest, August 2018; Release under GPLv3,

Who changed what in which revision?

UserRevisionLine numberNew contents of line
DimiterK 0:48d0ba737b93 1 # Getting started with Blinky on mbed OS
DimiterK 0:48d0ba737b93 2
DimiterK 0:48d0ba737b93 3 This guide reviews the steps required to get Blinky working on an mbed OS platform.
DimiterK 0:48d0ba737b93 4
DimiterK 0:48d0ba737b93 5 Please install [mbed CLI](https://github.com/ARMmbed/mbed-cli#installing-mbed-cli).
DimiterK 0:48d0ba737b93 6
DimiterK 0:48d0ba737b93 7 ## Import the example application
DimiterK 0:48d0ba737b93 8
DimiterK 0:48d0ba737b93 9 From the command-line, import the example:
DimiterK 0:48d0ba737b93 10
DimiterK 0:48d0ba737b93 11 ```
DimiterK 0:48d0ba737b93 12 mbed import mbed-os-example-blinky
DimiterK 0:48d0ba737b93 13 cd mbed-os-example-blinky
DimiterK 0:48d0ba737b93 14 ```
DimiterK 0:48d0ba737b93 15
DimiterK 0:48d0ba737b93 16 ### Now compile
DimiterK 0:48d0ba737b93 17
DimiterK 0:48d0ba737b93 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:
DimiterK 0:48d0ba737b93 19
DimiterK 0:48d0ba737b93 20 ```
DimiterK 0:48d0ba737b93 21 mbed compile -m K64F -t ARM
DimiterK 0:48d0ba737b93 22 ```
DimiterK 0:48d0ba737b93 23
DimiterK 0:48d0ba737b93 24 Your PC may take a few minutes to compile your code. At the end, you see the following result:
DimiterK 0:48d0ba737b93 25
DimiterK 0:48d0ba737b93 26 ```
DimiterK 0:48d0ba737b93 27 [snip]
DimiterK 0:48d0ba737b93 28 +----------------------------+-------+-------+------+
DimiterK 0:48d0ba737b93 29 | Module | .text | .data | .bss |
DimiterK 0:48d0ba737b93 30 +----------------------------+-------+-------+------+
DimiterK 0:48d0ba737b93 31 | Misc | 13939 | 24 | 1372 |
DimiterK 0:48d0ba737b93 32 | core/hal | 16993 | 96 | 296 |
DimiterK 0:48d0ba737b93 33 | core/rtos | 7384 | 92 | 4204 |
DimiterK 0:48d0ba737b93 34 | features/FEATURE_IPV4 | 80 | 0 | 176 |
DimiterK 0:48d0ba737b93 35 | frameworks/greentea-client | 1830 | 60 | 44 |
DimiterK 0:48d0ba737b93 36 | frameworks/utest | 2392 | 512 | 292 |
DimiterK 0:48d0ba737b93 37 | Subtotals | 42618 | 784 | 6384 |
DimiterK 0:48d0ba737b93 38 +----------------------------+-------+-------+------+
DimiterK 0:48d0ba737b93 39 Allocated Heap: unknown
DimiterK 0:48d0ba737b93 40 Allocated Stack: unknown
DimiterK 0:48d0ba737b93 41 Total Static RAM memory (data + bss): 7168 bytes
DimiterK 0:48d0ba737b93 42 Total RAM memory (data + bss + heap + stack): 7168 bytes
DimiterK 0:48d0ba737b93 43 Total Flash memory (text + data + misc): 43402 bytes
DimiterK 0:48d0ba737b93 44 Image: .\.build\K64F\ARM\mbed-os-example-blinky.bin
DimiterK 0:48d0ba737b93 45 ```
DimiterK 0:48d0ba737b93 46
DimiterK 0:48d0ba737b93 47 ### Program your board
DimiterK 0:48d0ba737b93 48
DimiterK 0:48d0ba737b93 49 1. Connect your mbed device to the computer over USB.
DimiterK 0:48d0ba737b93 50 1. Copy the binary file to the mbed device.
DimiterK 0:48d0ba737b93 51 1. Press the reset button to start the program.
DimiterK 0:48d0ba737b93 52
DimiterK 0:48d0ba737b93 53 The LED on your platform turns on and off.
DimiterK 0:48d0ba737b93 54
DimiterK 0:48d0ba737b93 55 ## Troubleshooting
DimiterK 0:48d0ba737b93 56
DimiterK 0:48d0ba737b93 57 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.