/pio-stm32f205

A simple project which adds support for the STM32F205VG chip in PlatformIO

Primary LanguageC

How to build PlatformIO based project

  1. Install PlatformIO Core
  2. Download development platform with examples
  3. Extract ZIP archive
  4. Run these commands:
# clone directory and change directory to example
> git clone https://github.com/maxgerhardt/pio-stm32f205.git && cd pio-stm32f205

# Build project
> platformio run

# Upload firmware
> platformio run --target upload

# Build specific environment
> platformio run -e stm32F205

# Upload firmware for the specific environment
> platformio run -e stm32F205 --target upload

# Clean build files
> platformio run --target clean