Merge pull request #505 from paravoid/makerfabs_4MB

Add 4MB variant for Makerfabs ESP32 TFT Touch
This commit is contained in:
fvanroie 2023-07-16 16:49:32 +02:00 committed by GitHub
commit 8c51550685
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 6 deletions

View File

@ -47,7 +47,7 @@ jobs:
- out: m5stack - out: m5stack
env: m5stack-core2 env: m5stack-core2
- out: makerfabs - out: makerfabs
env: "makerfabs-tft35-cap -e makerfabs-s3-tft35-spi -e makerfabs-s3-tft40-rgb -e makerfabs-s3-tft43-rgb" env: "makerfabs-tft35-cap_4MB -e makerfabs-tft35-cap_16MB -e makerfabs-s3-tft35-spi -e makerfabs-s3-tft40-rgb -e makerfabs-s3-tft43-rgb"
- out: panlee - out: panlee
env: "panlee-zw3d95ce01s-ar-4848_16MB -e panlee-zw3d95ce01s-ur-4848_16MB" env: "panlee-zw3d95ce01s-ar-4848_16MB -e panlee-zw3d95ce01s-ur-4848_16MB"
- out: sunton - out: sunton

View File

@ -55,7 +55,7 @@ jobs:
- name: Run PlatformIO - name: Run PlatformIO
run: pio run -e az-touch-mod-esp32_ili9341_4MB -e az-touch-mod-esp32_ili9341_8MB run: pio run -e az-touch-mod-esp32_ili9341_4MB -e az-touch-mod-esp32_ili9341_8MB
- name: Run PlatformIO - name: Run PlatformIO
run: pio run -e makerfabs-tft35-cap run: pio run -e makerfabs-tft35-cap_4MB -e makerfabs-tft35-cap_16MB
- name: Run PlatformIO - name: Run PlatformIO
run: pio run -e yeacreate-nscreen32 -e run: pio run -e yeacreate-nscreen32 -e
- name: Run PlatformIO - name: Run PlatformIO

View File

@ -53,7 +53,8 @@ extra_default_envs =
; m5stack-core2 ; m5stack-core2
; m5stack-tough ; m5stack-tough
; makerfabs-s3-tft35-spi ; makerfabs-s3-tft35-spi
; makerfabs-tft35-cap ; makerfabs-tft35-cap_16MB
; makerfabs-tft35-cap_4MB
; makerfabs-tft-s2_ili9488 ; makerfabs-tft-s2_ili9488
; nodemcu32s-raspi ; nodemcu32s-raspi
; s2-mini-esp32s2_ili9341 ; s2-mini-esp32s2_ili9341

View File

@ -4,8 +4,8 @@
; - FT6236 touch controller ; ; - FT6236 touch controller ;
;***************************************************; ;***************************************************;
[env:makerfabs-tft35-cap] [makerfabs-tft35-cap]
extends = arduino_esp32_v2, flash_16mb extends = arduino_esp32_v2
board = esp32dev board = esp32dev
build_flags = build_flags =
@ -39,3 +39,9 @@ lib_deps =
${arduino_esp32_v2.lib_deps} ${arduino_esp32_v2.lib_deps}
${tft_espi.lib_deps} ${tft_espi.lib_deps}
${ft6336.lib_deps} ${ft6336.lib_deps}
[env:makerfabs-tft35-cap_4MB]
extends = makerfabs-tft35-cap, flash_4mb
[env:makerfabs-tft35-cap_16MB]
extends = makerfabs-tft35-cap, flash_16mb