Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 1.22 KB

project-setup.md

File metadata and controls

24 lines (16 loc) · 1.22 KB

LED Blinker: Project Setup

Note: if you have followed the HelloWorld tutorial previously, this should feel very familiar...

An F´ Project ties to a specific version of tools to work with F´. In order to create this project and install the correct version of tools, you should perform a bootstrap of F´.

To do this you should follow the following steps from the F´ installation guide:

  1. Ensure you meet the F´ System Requirements
  2. Bootstrap your F´ project with the name led-blinker

Bootstrapping your F´ project created a folder called led-blinker (or any name you chose) containing the standard F´ project structure as well as the virtual environment up containing the tools to work with F´.

Next, generate a build cache using the following commands:

cd led-blinker
. fprime-venv/bin/activate
fprime-util generate

Always remember to activate your project's virtual environment whenever you work with it.