espressif: add ESP32-S3-BOX-3 board definition - #11431
Merged
Merged
Conversation
Add ports/espressif/boards/espressif_esp32s3_box_3/ (five files). The BOX-3 shares the BOX's SoC, flash and LCD bus, but differs in four ways established from esp-bsp and on hardware: - Backlight is GPIO47, not 45. The BOX firmware PWMs GPIO45, which is I2S LRCK here, so the screen stays dark. - The panel reset is active HIGH. FourWire assumes active low and would leave the panel in reset, so board_init() drives GPIO48 and FourWire gets reset=None. - The panel needs the esp-bsp vendor init sequence; neither the BOX's 6-command sequence nor the generic ILI9341 one lights it. - PSRAM is 16MB, not 8MB. pins.c mirrors the BOX layout, differing only where the hardware does: LCD_CTRL(GPIO45) is LCD_BACKLIGHT(GPIO47), and I2S_LRCK moves 47 -> 45. Serves the ILI9341/GT911 revision; the ST7789/TT21100 revision is a known gap. Verified on hardware: board_id, pin aliases, 16MB PSRAM, panel and audio.
dhalbert
approved these changes
Sep 20, 2026
dhalbert
left a comment
Collaborator
There was a problem hiding this comment.
Great, thank you!
Could you file a corresponding PR in https://github.com/adafruit/circuitpython-org ? Thanks.
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.
Adds the
espressif_esp32s3_box_3board definition. Fixes #10169.The BOX-3 shares the BOX's SoC, flash and LCD bus, but differs in four ways:
board_init()drives GPIO48 and FourWire getsreset=Nonepins.cmirrors the BOX file, changing onlyLCD_CTRL(45)toLCD_BACKLIGHT(47)andI2S_LRCKfrom 47 to 45.Verified on hardware:
board_id, pin aliases, 16MB PSRAM, LCD (320x240, no user-code workaround) and audio. Serves the ILI9341/GT911 revision; the ST7789/TT21100 revision is a known gap.PID allocation: espressif/usb-pids#383 (0x7014/0x7015).