Skip to content

Commit

Permalink
Added pio.ini
Browse files Browse the repository at this point in the history
  • Loading branch information
lewisxhe committed Mar 28, 2023
1 parent dcf8b02 commit d8e5fd6
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions platformio.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
; 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]
;! Don't change
boards_dir = ./board

;device serial number : K192
default_envs = T-QT-Pro-N4R2

;device serial number : K191
; default_envs = T-QT-Pro-N8


; src_dir = examples/Arduino_Life
; src_dir = examples/Pong_v3
; src_dir = examples/RLE_Font_test
; src_dir = examples/TFT_Char_times
; src_dir = examples/TFT_Rainbow
; src_dir = examples/TFT_Meter_5
; src_dir = examples/TFT_Ellipse
; src_dir = examples/TFT_Ellipse
; src_dir = examples/TFT_graphicstest_PDQ3
src_dir = examples/LVGL_Factory
; src_dir = examples/LVGL_Arduino
; src_dir = examples/RotationTest
; src_dir = examples/DeepSleep

;FLASH = 4M PSRAM = 2M
[env:T-QT-Pro-N4R2]
platform = espressif32
board = esp32-s3-t-qt-pro
framework = arduino

build_flags =
-DBOARD_HAS_PSRAM
; -UARDUINO_USB_CDC_ON_BOOT ;Opening this line will not block startup

;FLASH = 8M ,NO PSRAM
[env:T-QT-Pro-N8]
platform = espressif32
board = esp32-s3-t-qt-pro
framework = arduino

build_flags =
; -UARDUINO_USB_CDC_ON_BOOT ;Opening this line will not block startup

0 comments on commit d8e5fd6

Please sign in to comment.