Skip to content

PlatformIO building

p-h-a-i-l edited this page May 2, 2019 · 3 revisions

Building the firmware in PlatformIO

You can use platformio either with an IDE or via command line.

IDE

  1. Follow the ide installation guide. (It works with vscode or atom)
  2. Open the Hoverboard directory in your IDE
  3. Build it by typing in terminal:
pio run
  1. If you see SUCCESS, that means it built :)
  2. or... hit the build (tick) button at the bottom, or the 'build and upload' (right arrow) button if your STLINK is directly connected.

Command Line

  1. Install the command line tool via the cli installation guide
  2. cd to the Hoverbot directory
  3. Build it:
pio run
  1. If you see SUCCESS, that means it built :)