43 lines
1.2 KiB
INI
43 lines
1.2 KiB
INI
; 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:embedded]
|
|
platform = espressif32
|
|
board = esp32doit-devkit-v1
|
|
board_build.partitions = no_ota.csv
|
|
framework = arduino
|
|
monitor_speed = 115200
|
|
upload_speed = 921600
|
|
monitor_port = COM6
|
|
lib_deps =
|
|
https://git.kleiax.de/PlatformIO-Libs/SparkFunGNSS.git
|
|
knolleary/PubSubClient@^2.8
|
|
br3ttb/PID@^1.2.1
|
|
marcoschwartz/LiquidCrystal_I2C@^1.1.4
|
|
mprograms/QMC5883LCompass@^1.2.0
|
|
upload_port = COM6
|
|
test_ignore = test_desktop
|
|
build_type = debug
|
|
monitor_filters = esp32_exception_decoder
|
|
check_tool = clangtidy
|
|
check_flags =
|
|
clangtidy: --checks=-*,cert-*,cppcoreguidelines-*,clang-analyzer-*,google-*,hicpp-*,modernize-*,performance-*,portability-*,readability-*,bugprone-*,misc-*,openmp-*,objc-* --fix
|
|
check_src_filters =
|
|
+<src/*>
|
|
+<lib/*>
|
|
+<include/*>
|
|
|
|
[env:native]
|
|
platform = native
|
|
test_ignore = test_embedded
|
|
|
|
[platformio]
|
|
description = A Rover who should be drive a route by gps.
|