Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 665 Bytes

File metadata and controls

27 lines (20 loc) · 665 Bytes

How to build PlatformIO based project

  1. Install PlatformIO Core
  2. Download development platform with examples
  3. Extract ZIP archive
  4. Run these commands:
# Change directory to example
$ cd platform-nordicnrf52/examples/zephyr-blink

# Build project
$ pio run

# Upload firmware
$ pio run --target upload

# Build specific environment
$ pio run -e nrf52_dk

# Upload firmware for the specific environment
$ pio run -e nrf52_dk --target upload

# Clean build files
$ pio run --target clean