2024-05-23 22:42:03 +00:00
|
|
|
; 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
|
|
|
|
|
|
|
|
[platformio]
|
|
|
|
default_envs = T-Deck
|
|
|
|
src_dir = src
|
|
|
|
|
|
|
|
[env:T-Deck]
|
2024-05-26 22:30:46 +00:00
|
|
|
platform = espressif32@6.3.0
|
2024-05-23 22:42:03 +00:00
|
|
|
board = esp32s3box
|
|
|
|
framework = arduino
|
|
|
|
upload_speed = 921600
|
|
|
|
monitor_speed = 115200
|
|
|
|
board_build.partitions = default_16MB.csv
|
|
|
|
build_flags =
|
|
|
|
-DBOARD_HAS_PSRAM
|
|
|
|
-DARDUINO_USB_CDC_ON_BOOT=1
|
2024-05-29 04:34:22 +00:00
|
|
|
-DDISABLE_ALL_LIBRARY_WARNINGS
|
2024-05-23 22:42:03 +00:00
|
|
|
lib_deps =
|
2024-06-05 19:06:51 +00:00
|
|
|
lib_extra_dirs = lib
|