28 lines
779 B
INI
28 lines
779 B
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
|
|
|
|
[common]
|
|
|
|
|
|
[env:esp32-s3-devkitc-1]
|
|
platform = https://github.com/Jason2866/platform-espressif32.git#Arduino/IDF53
|
|
board = esp32-s3-devkitc-1
|
|
framework = arduino
|
|
build_flags = -DARDUINO_USB_MODE=0
|
|
monitor_speed = 115200
|
|
lib_deps = bblanchon/ArduinoJson @ ~7.3.0
|
|
|
|
[platformio]
|
|
src_dir = esp32/src
|
|
lib_dir = esp32/lib
|
|
include_dir = esp32/include
|
|
test_dir = esp32/test
|
|
data_dir = esp32/data
|
|
workspace_dir = esp32/.pio |