Add support for the Waveshare ESP32-S3-Zero N8R8 board#138
Open
WestYao666 wants to merge 1 commit into
Open
Conversation
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.
Description
Add support for the Waveshare ESP32-S3-Zero N8R8 board in the ESP-Claw board manager.
This PR introduces a new board definition for
waveshare_esp32_s3_zero_n8r8, covering the board metadata, device declarations, peripheral layout, board-specific SDK defaults, and generated device include setup.The board is based on the ESP32-S3-PICO-1-N8R8 module, with 8 MB flash and 8 MB Octal PSRAM. The configuration enables the native USB Serial/JTAG console over the USB-C connector and uses the 8 MB partition table.
Main changes:
peripheralsempty because this board has no fixed I2C, SPI, audio, display, or storage wiring.setup_device.cwith board manager includes for generated device support.The onboard WS2812 LED is marked
init_skip: true, so Board Manager does not take ownership of it during boot. Lua scripts or custom application code can initialize and control it on demand.Testing
It runs normally on the ESP32-S3-Zero N8R8 development board and can successfully call LLM.
Suggested validation command:
cd application/edge_agent idf.py bmgr -c ./boards -b waveshare_esp32_s3_zero_n8r8 idf.py menuconfig idf.py build idf.py flash monitorChecklist
Before submitting a Pull Request, please ensure the following: