Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
fvanroie committed Jul 22, 2024
2 parents 734f11d + 4f8f011 commit 2b083d3
Show file tree
Hide file tree
Showing 4 changed files with 94 additions and 3 deletions.
1 change: 1 addition & 0 deletions platformio_override-template.ini
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ extra_default_envs =
; wt-86-32-3zw1
; yeacreate-nscreen32
; wz2432r028
; ws_esp32_s3_touch_lcd_4p3
;endregion

;region -- Define your local COM ports for each environment ---
Expand Down
6 changes: 3 additions & 3 deletions src/drv/tft/tft_driver_arduinogfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -296,9 +296,6 @@ bool ArduinoGfx::is_driver_pin(uint8_t pin)
#ifdef TFT_HSYNC
|| (pin == TFT_HSYNC)
#endif
#ifdef TFT_BCKL
|| (pin == TFT_BCKL)
#endif
#ifdef TFT_RST
|| (pin == TFT_RST)
#endif
Expand Down Expand Up @@ -338,6 +335,9 @@ bool ArduinoGfx::is_driver_pin(uint8_t pin)
#ifdef TFT_G4
|| (pin == TFT_G4)
#endif
#ifdef TFT_G5
|| (pin == TFT_G5)
#endif
#ifdef TFT_B0
|| (pin == TFT_B0)
#endif
Expand Down
4 changes: 4 additions & 0 deletions user_setups/esp32s3/esp32-s3-4848S040.ini
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,10 @@ build_flags =
-D I2C_TOUCH_FREQUENCY=400000
-D I2C_TOUCH_ADDRESS=0x5D ; or 0x14
-D I2C_TOUCH_PORT=1
; USB GPIO - Only need to define these so that the pins do not
; show up in the list of available GPIO
-D USB_TXD=43
-D USB_RXD=44
;endregion

lib_deps =
Expand Down
86 changes: 86 additions & 0 deletions user_setups/esp32s3/ws_esp32_s3_touch_lcd_4p3.ini
Original file line number Diff line number Diff line change
@@ -0,0 +1,86 @@
;***************************************************;
; Waveshare ESP32-S3-Touch-LCD-4.3 ;
; - 16-bit RGB TFT ;
; - GT911 touch controller ;
;***************************************************;


[ws_esp32_s3_touch]
extends = arduino_esp32s3_v2, flash_8mb
board = esp32-s3-devkitc-1
board_build.arduino.memory_type = qio_opi

build_flags =
${arduino_esp32s3_v2.build_flags}
${esp32s3.ps_ram}
;-DARDUINO_USB_CDC_ON_BOOT
;-DUSE_USB_CDC_CONSOLE

;region -- ArduinoGFX build options ------------------------
-D HASP_USE_ARDUINOGFX=1
-D HASP_LV_USE_SW_ROTATE=1
;endregion

lib_deps =
${arduino_esp32s3_v2.lib_deps}
${arduinogfx.lib_deps}
Arduino_RPi_DPI_RGBPanel_mod
${goodix.lib_deps}

[env:ws_esp32_s3_touch_lcd_4p3]
extends = ws_esp32_s3_touch

build_flags =
-D HASP_MODEL="Waveshare ESP32-S3-Touch-LCD-4.3"
${ws_esp32_s3_touch.build_flags}
; Bus Settings
-D LV_VDB_SIZE=76800 ; 10% of full framebuffer
-D TFT_WIDTH=800
-D TFT_HEIGHT=480
-D TFT_DE=5
-D TFT_VSYNC=3
-D TFT_HSYNC=46
-D TFT_PCLK=7
-D TFT_B0=14
-D TFT_B1=38
-D TFT_B2=18
-D TFT_B3=17
-D TFT_B4=10
-D TFT_G0=39
-D TFT_G1=0
-D TFT_G2=45
-D TFT_G3=48
-D TFT_G4=47
-D TFT_G5=21
-D TFT_R0=1
-D TFT_R1=2
-D TFT_R2=42
-D TFT_R3=41
-D TFT_R4=40
-D TFT_BCKL=6 ; use GPIO06 as backlight PIN
; Panel Settings
-D TFT_HSYNC_POLARITY=0
-D TFT_HSYNC_FRONT_PORCH=20 ; Maximum HSYNC Front Porch
-D TFT_HSYNC_PULSE_WIDTH=10 ; Typical HSYNC Pulse Width
-D TFT_HSYNC_BACK_PORCH=10 ; Typical HSYNC Back Porch
-D TFT_VSYNC_POLARITY=0
-D TFT_VSYNC_FRONT_PORCH=10 ; Maximum VSYNC Front Porch
-D TFT_VSYNC_PULSE_WIDTH=10 ; Typical VSYNC Pulse Width
-D TFT_VSYNC_BACK_PORCH=10 ; Typical VSYNC Back Porch
-D TFT_PCLK_ACTIVE_NEG=0
-D TFT_PREFER_SPEED=14000000 ; 1/2 of Typical DCLK Frequency
-D TFT_AUTO_FLUSH=1
; Touch Settings
-D TOUCH_WIDTH=800
-D TOUCH_HEIGHT=480
-D TOUCH_DRIVER=0x911
-D TOUCH_SCL=9
-D TOUCH_SDA=8
-D TOUCH_IRQ=-1
-D TOUCH_RST=-1
-D I2C_TOUCH_ADDRESS=0x5d ; or 0x5D
-D I2C_TOUCH_FREQUENCY=400000
-D BACKLIGHT_FREQUENCY=1000 ;adopted frerquency for MP3302DJ-LF-Z (200 to 1000Hz) ->higher is better for sound!
lib_deps =
${sunton-esp32-s3-tft.lib_deps}
${goodix.lib_deps}

0 comments on commit 2b083d3

Please sign in to comment.