-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplatformio.ini
More file actions
46 lines (44 loc) · 1.3 KB
/
Copy pathplatformio.ini
File metadata and controls
46 lines (44 loc) · 1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
; 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-s3-devkitc-1]
platform = espressif32@6.6.0
board = esp32-s3-devkitc-1
framework = arduino
board_build.arduino.memory_type = qio_opi
board_build.partitions = default_16MB.csv
board_upload.flash_size = 16MB
monitor_speed = 115200
lib_deps = bodmer/TFT_eSPI@^2.5.33
build_flags =
-D BOARD_HAS_PSRAM ; N16R8V has PSRAM
-D ARDUINO_USB_MODE=1 ; necessary for serial port
-D ARDUINO_USB_CDC_ON_BOOT=1 ; necessary for serial port
-D USER_SETUP_LOADED
-D ST7789_DRIVER
-D USE_HSPI_PORT
-D TFT_RGB_ORDER=TFT_BGR ; swap red and blue byte order
-D TFT_INVERSION_OFF
-D TFT_WIDTH=296 ; init the eSPI lib with correct dimensions
-D TFT_HEIGHT=240 ; init the eSPI lib with correct dimensions
-D TFT_MISO=8
-D TFT_MOSI=6
-D TFT_SCLK=7
-D TFT_CS=5
-D TFT_DC=4
-D TFT_RST=48
-D LOAD_GLCD=1
-D LOAD_FONT2
-D LOAD_FONT4
-D LOAD_FONT6
-D LOAD_FONT7
-D LOAD_FONT8
-D LOAD_GFXFF
-D SMOOTH_FONT
-D SPI_FREQUENCY=80000000