39 lines
1.1 KiB
INI
39 lines
1.1 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:esp32-devtest-release]
|
|
board = esp32dev
|
|
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
|
|
framework = arduino
|
|
lib_deps =
|
|
hideakitai/DebugLog@^0.8.4
|
|
board_build.flash_size = 4MB
|
|
board_build.partitions = default.csv
|
|
monitor_speed = 921600
|
|
build_type = release
|
|
|
|
[env:esp32-devtest-debug]
|
|
board = esp32dev
|
|
platform = https://github.com/pioarduino/platform-espressif32/releases/download/stable/platform-espressif32.zip
|
|
|
|
lib_deps =
|
|
hideakitai/DebugLog@^0.8.4
|
|
board_build.flash_size = 4MB
|
|
board_build.partitions = default.csv
|
|
monitor_speed = 921600
|
|
build_type = debug
|
|
build_flags =
|
|
-O0
|
|
-g3
|
|
-ggdb
|
|
-fno-inline
|
|
-fno-ipa-sra
|
|
-fno-tree-sra
|
|
-fno-builtin |