Code Monkey home page Code Monkey logo

yotta-config-pins's Introduction

example-mbedos-blinky

Blinky is a simple example program that blinks an LED on an mbed-enabled board with mbed OS.

What Blinky does

This is a short review of the Blinky code. More information is available on the user guide, where we explain how to write mbed OS applications and how to work with yotta.

  1. The code begins with include. The included header is mbed.h, from the mbed-drivers library. It is a key library for mbed OS, and includes most of the functionality standard applications need. yotta, our build system, includes mbed-drivers during compilation because that library is listed as a dependency in Blinky's module.json file.

  2. mbed OS applications start with app_start, replacing main.

  3. MINAR is the mbed OS scheduler; we use it here to create a callback that will run every 500 milliseconds. The function we're running is blinky.

  4. blinky creates a DigitalOut using the LED1 on our board. It then turns the LED on and off and prints its status to the terminal using printf.

Tip: To learn more about writing applications for mbed OS, see the mbed OS user guide's review of Blinky.

Building the example

If you're using yotta as a command-line tool

Tip: If you need help setting up yotta or building a project, see our quick guide, which uses the same example.

To build Blinky with yotta as a command-line tool:

  1. Clone the repository from GitHub:

    $ git clone https://github.com/ARMmbed/example-mbedos-blinky.git
    $ cd example-mbedos-blinky
    
  2. Select a target platform:

    $ yotta target frdm-k64f-gcc
    
  3. Build it:

    $ yotta build
    ... bunch of build messages ...
    [135/135] Linking CXX executable source/example-mbedos-blinky
    

yotta will put the compiled binary in the project's /build folder. Copy the binary /build/frdm-k64f-gcc/source/example-mbedos-blinky.bin to your mbed board over USB.

If you're on the online IDE

Tip: If you need help getting started with the IDE, see our quick guide, which uses the same example.

To build Blinky in your IDE workspace:

  1. The IDE needs to know which target to build for. Click Target:

  2. The list displays your recently used targets. If the target you need is listed, click it.

  3. If your target isn't in the drop-down list, click Search in Registry. A list of targets opens. Select your target and click Set.

  4. Click Build Project.

The IDE will build the project as a binary file and ask you to download it. When the download finishes, copy the file to your mbed board over USB.

yotta-config-pins's People

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.