feat(board): add Wireless Tag WT32-SC01 Plus (ESP32-S3, ST7796 I80)#95
Open
ayyaris wants to merge 1 commit into
Open
feat(board): add Wireless Tag WT32-SC01 Plus (ESP32-S3, ST7796 I80)#95ayyaris wants to merge 1 commit into
ayyaris wants to merge 1 commit into
Conversation
…T6336U)
New board support for the Wireless Tag WT32-SC01 Plus:
- ESP32-S3 SoC, ST7796 480x320 display via native 8-bit I80 bus
- FT6336U capacitive touch via I2C
- 16 MB flash, 2 MB Quad PSRAM
board_peripherals.yaml: I80 LCD bus + I2C bus definitions
board_devices.yaml:
- lcd_panel: ST7796 with correct I80 timings and reset sequence
- lcd_touch: type lcd_touch / sub_type i2c with 8-bit I2C addr [0x70]
(avoids lcd_touch_i2c probe-address-0x00 regression -- see issue espressif#90)
sdkconfig.defaults.board:
- SPIRAM_XIP_FROM_PSRAM=n (2 MB Quad PSRAM too small for XIP instruction cache)
- SPIRAM_MALLOC_ALWAYSINTERNAL=65536 + FREERTOS_TASK_CREATE_ALLOW_EXT_MEM=n
(keeps task stacks in internal DRAM -- prevents cache-disabled stack panic)
setup_device.c: ST7796 init sequence via esp_lcd panel I80 driver
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
Alessio Ayyari seems not to be a GitHub user. You need a GitHub account to be able to sign the CLA. If you have already a GitHub account, please add the email address used for this commit to your account. You have signed the CLA already but the status is still pending? Let us recheck it. |
3 tasks
Collaborator
|
Thanks for splitting the PR! It looks like the CLA check is still not passing. Could you please double-check that the GitHub account associated with the commit author email has signed the CLA? |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Adds board support for the Wireless Tag WT32-SC01 Plus:
Files
board_peripherals.yamlboard_devices.yamlsdkconfig.defaults.boardsetup_device.cesp_lcdI80 driverKey decisions
Touch device type: Uses
type: lcd_touch/sub_type: i2c(not the deprecatedlcd_touch_i2c). The deprecated type has a YAML mapping bug wherei2c_addr[]is never populated fromio_i2c_config.dev_addr, causing the probe loop to always target address 0x00 →ESP_ERR_INVALID_RESPONSE→ reboot loop. Tracked in issue #90.PSRAM constraints: The WT32-SC01 Plus has 2 MB Quad PSRAM, which is too small for
SPIRAM_XIP_FROM_PSRAM. With XIP-from-PSRAM disabled, task stacks must remain in internal DRAM — otherwise any flash read while a task runs on a PSRAM stack triggersesp_task_stack_is_sane_cache_disabled()→ panic. Tracked in issue #91.Test plan
🤖 Generated with Claude Code