12345678910111213141516171819202122232425262728293031323334353637 |
- ; 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:genericSTM32F407VET6]
- platform = ststm32
- board = genericSTM32F407VET6
- board_build.mcu = stm32f407vet6
- board_build.f_cpu = 168000000L
- framework = arduino
- upload_protocol = stlink
- ;upload_port = COM5
- ;upload_speed = 115200
- monitor_port = COM8
- monitor_speed = 115200
- debug_tool = stlink
- ;debug_build_flags
- ;debug_init_break
- ;debug_init_cmds
- ;debug_extra_cmds
- ;debug_load_cmds
- ;debug_load_mode
- ;debug_server
- ;debug_port
- ;debug_speed
- ;debug_svd_path
- ;debug_server_ready_pattern
- ;debug_test
- lib_deps = https://github.com/ZinggJM/GxTFT ; graphical library
- build_flags = -D STM32F407VE ; in Arduino IDE it defined then you right select a board. GxTFT requires this
|