| 123456789101112131415161718192021222324252627282930 |
- ; PlatformIO Project Configuration File
- ;
- ; Build options: build flags, source filter
- ; Upload options: custom upload port, speed and extra flags
- ; Library options: dependencies, extra library storages
- ; Advanced options: extra scripting
- ;
- ; Please visit documentation for the other options and examples
- ; https://docs.platformio.org/page/projectconf.html
- ; [env:black_f407ve]
- ; platform = ststm32
- ; board = black_f407ve
- ; framework = arduino
- ; upload_protocol = stlink
- ; debug_tool = stlink
- ; monitor_speed = 9600
- [common]
- build_flags =
- -D DEVICE=$PIOENV
- [env:atmega168]
- build_flags =
- ${common.build_flags}
- platform = atmelavr
- board = nanoatmega168
- framework = arduino
- board_build.mcu = atmega168
- board_build.f_cpu = 16000000L
|